-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.39 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "g100",
"description": "100 Days of Artifacts Gallery",
"author": {
"name": "Adam Vernon",
"email": "hanenbro@gmail.com",
"url": "https://twitter.com/hanenbro"
},
"contributors": [],
"homepage": "http://100days.akineticblog.com/",
"keywords": [
"web"
],
"version": "1.0.0",
"jspm": {
"configFile": "jspm.conf.js",
"dependencies": {
"angular2": "npm:angular2@^2.0.0-beta.0",
"babel-runtime": "npm:babel-runtime@^6.3.13",
"normalize.css": "github:necolas/normalize.css@^3.0.3",
"rxjs": "npm:rxjs@^5.0.0-beta.0",
"traceur": "npm:traceur@^0.0.102"
},
"devDependencies": {
"babel": "npm:babel-core@^6.3.13",
"core-js": "npm:core-js@^1.1.4"
}
},
"dependencies": {
"babel-runtime": "6.3.x",
"reflect-metadata": "0.1.2",
"zone.js": "0.5.10",
"es6-shim": "0.33.3",
"rxjs": "5.0.0-beta.0",
"angular2": "2.0.0-beta.0"
},
"devDependencies": {
"babel-core": "6.3.x",
"babel-plugin-transform-es2015-modules-commonjs": "6.3.x",
"babel-preset-es2015": "6.3.x",
"gulp": "3.9.x",
"jspm": "0.16.x",
"nodemon": "1.8.x",
"typescript": "1.7.3",
"modern-web-dev-build": "0.2.x",
"jasmine-core": "2.4.x",
"karma-jasmine": "0.3.x",
"tsd": "0.6.5",
"google-spreadsheets": "~0.4.1",
"googleapis": "^59.0.0",
"opener": "^1.4.1",
"read": "^1.0.6"
},
"engines": {
"node": ">=4.2.1",
"npm": ">=2.0.0"
},
"scripts": {
"clean": "gulp clean",
"compile": "gulp",
"build": "npm run compile && npm run test",
"test": "gulp prepare-test-unit && gulp test-unit",
"start": "npm run serve",
"serve": "nodemon --watch gulpfile.js --watch gulpfile.babel.js --watch package.json --watch .jshintrc --watch .jscsrc --watch tsconfig.json --watch tslint.json --watch jspm.conf.js --exec gulp serve",
"serve-dist": "nodemon --watch gulpfile.js --watch gulpfile.babel.js --watch package.json --watch .jshintrc --watch .jscsrc --watch tsconfig.json --watch tslint.json --watch jspm.conf.js --exec gulp serve-dist",
"update": "npm install --no-optional && jspm update && jspm dl-loader && npm run tsd",
"outdated": "npm outdated",
"help": "gulp help",
"tsd": "tsd reinstall --save --overwrite",
"tsd-update": "tsd update --save --overwrite",
"setup": "npm install --no-optional && jspm install && jspm dl-loader && npm run tsd"
}
}