-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.32 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.32 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
{
"name": "coop",
"description": "Created by the ModernWebDev Yeoman Generator",
"author": {
"name": "Jake Ruesink",
"email": "jaruesink@gmail.com",
"url": "http://coopchatapp.com"
},
"contributors": [],
"homepage": "https://coopchatapp.com",
"bugs": "https://coopchatapp.com",
"keywords": [
"web"
],
"private": true,
"version": "0.0.1",
"jspm": {
"configFile": "jspm.conf.js",
"dependencies": {
"angular2": "npm:angular2@2.0.0-beta.13",
"babel-runtime": "npm:babel-runtime@6.6.1",
"normalize.css": "github:necolas/normalize.css@3.0.3",
"rxjs": "npm:rxjs@5.0.0-beta.2"
},
"devDependencies": {
"babel": "npm:babel-core@6.7.4"
}
},
"dependencies": {
"babel-runtime": "^6.6.1",
"reflect-metadata": "0.1.2",
"zone.js": "^0.6.6",
"es6-shim": "^0.35.0",
"rxjs": "5.0.0-beta.2",
"angular2": "2.0.0-beta.13"
},
"devDependencies": {
"angular2-jwt": "^0.1.9",
"babel-core": "^6.7.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"gulp": "^3.9.1",
"jasmine-core": "^2.4.1",
"jspm": "^0.16.32",
"karma-jasmine": "^0.3.8",
"modern-web-dev-build": "^0.5.3",
"nodemon": "^1.9.1",
"typescript": "^1.8.9",
"typings": "^0.7.9"
},
"engines": {
"node": ">=4.2.6",
"npm": ">=3.7.1"
},
"scripts": {
"tsc": "tsc",
"typings": "typings",
"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 typings-install",
"outdated": "npm outdated",
"help": "gulp help",
"typings-install": "typings install",
"setup": "npm install --no-optional && jspm install && jspm dl-loader && npm run typings-install"
}
}