forked from rai22474/dojoAtdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "dojo-atdd",
"version": "1.0.0",
"description": "ATDD at IGZ",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rai22474/dojoAtdd.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rai22474/dojoAtdd/issues"
},
"homepage": "https://github.com/rai22474/dojoAtdd#readme",
"dependencies": {
"lodash": "3.10.1",
"q": "1.4.1",
"request-promise": "3.0.0",
"restify": "4.1.0"
},
"devDependencies": {
"chai": "3.5.0",
"cucumber": "1.0.0",
"mocha": "2.5.3",
"sinon": "1.17.4",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-mocha-cli": "1.12.0",
"grunt-contrib-jshint": "0.12.0",
"grunt-exec": "0.4.6",
"load-grunt-tasks": "0.6.0",
"proxyquire": "1.7.9"
},
"engines": {
"node": ">=4.4.5 <4.5.0",
"npm": ">=2.15.5 <2.16.0"
},
"scripts": {
"start": "node --max-old-space-size=1024 --harmony src/index.js",
"test": "./node_modules/.bin/grunt mochacli",
"jshint": "./node_modules/.bin/grunt jshint",
"cucumber": "node_modules/.bin/cucumber-js acceptance-tests/features -r acceptance-tests/lib/step-definitions -t ~@Pending -f pretty"
}
}