-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "iwc",
"description": "iwc",
"version": "1.0.0",
"private": false,
"author": "Evgeny Bogdanov",
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
},
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/nodemon server.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec test/test-*.js",
"postinstall": ""
},
"dependencies": {
"jade": "latest",
"underscore": "latest",
"async": "latest",
"moment": "latest"
},
"devDependencies": {
"node-inspector": "latest",
"mocha": "latest",
"grunt": "~0.4.1",
"grunt-contrib-watch": "~0.5.1",
"grunt-nodemon": "~0.1.0",
"grunt-concurrent": "~0.3.0",
"grunt-contrib-stylus": "~0.7.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-shell": "~0.3.1",
"grunt-contrib-jade": "~0.8.0",
"grunt-contrib-cssmin": "~0.6.1",
"grunt-contrib-uglify": "~0.2.2",
"grunt-mocha": "~0.4.1",
"chai": "~1.7.2",
"require-uncache": "0.0.2",
"sinon": "~1.7.3"
}
}