-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
48 lines (48 loc) · 1.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "systemjs-seed",
"version": "1.1.2",
"description": "seed project for systemjs and angular",
"author": "Jon Stevens <[email protected]>",
"devDependencies": {
"babel": "^5.2.17",
"gulp": "^3.8.11",
"gulp-helpers": "^1.5.7",
"jspm": "^0.15.6",
"protractor": "^2.0.0"
},
"dependencies": {},
"jspm": {
"directories": {
"baseURL": "dist",
"lib": "src",
"packages": "jspm_packages"
},
"configFile": "system.config.js",
"dependencies": {
"angular": "github:angular/bower-angular@^1.3.15",
"angular-mocks": "github:angular/bower-angular-mocks@^1.3.15",
"css": "github:systemjs/plugin-css@^0.1.6",
"json": "github:systemjs/plugin-json@^0.1.0",
"ngreact": "github:davidchang/ngReact@^0.1.4",
"oclazyload-systemjs-router": "github:lookfirst/oclazyload-systemjs-router@^1.2.1",
"react": "npm:react@^0.13.0",
"todomvc-app-css": "github:tastejs/todomvc-app-css@^1.0.2",
"todomvc-common": "github:tastejs/todomvc-common@^1.0.1"
},
"devDependencies": {
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^0.9.4"
}
},
"repository": {
"type": "git",
"url": "https://github.com/lookfirst/systemjs-seed.git"
},
"scripts": {
"postinstall": "jspm install && jspm dl-loader",
"test": "gulp recompile && ./node_modules/gulp-helpers/node_modules/karma/bin/karma start --single-run --browsers PhantomJS",
"protractor-setup": "./node_modules/.bin/webdriver-manager update --standalone",
"protractor-run": "./node_modules/.bin/protractor protractor.conf.js"
}
}