-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "angular-node-cookbook",
"version": "1.0.0",
"description": "Examples for building AngularJS applications in NodeJS.",
"main": "server.js",
"engines": {
"node": "0.12.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/dfbaskin/angular-node-cookbook.git"
},
"keywords": [
"AngularJS",
"Node"
],
"author": "Dave Baskin <dfbaskin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dfbaskin/angular-node-cookbook/issues"
},
"homepage": "https://github.com/dfbaskin/angular-node-cookbook#readme",
"dependencies": {
"express": "^4.12.3",
"jspm": "^0.15.6"
},
"jspm": {
"directories": {
"baseURL": "src"
},
"dependencies": {
"angular": "github:angular/bower-angular@^1.3.15"
},
"devDependencies": {
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^0.9.4"
}
}
}