-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 956 Bytes
/
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
{
"name": "rental-movie",
"version": "1.0.0",
"description": "Rental movie kata refactoring",
"homepage": "https://github.com/metisto/rental-movie-javascript",
"private": true,
"license": "CC-BY-4.0",
"scripts": {
"inspect": "jsinspect -t 30 -i -j --ignore -test.js src",
"lint": "eslint --ext .js src",
"cover": "NODE_PATH=./src ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"test": "NODE_PATH=./src mocha",
"test:watch": "NODE_PATH=./src mocha --watch",
"validate": "npm run lint && npm run test"
},
"dependencies": {
},
"engines": {
"node": "6.9.1",
"npm": "3.10.8"
},
"devDependencies": {
"babel-core": "6.18.2",
"babel-eslint": "7.1.1",
"babel-preset-es2015": "6.18.0",
"eslint-loader": "1.6.1",
"eslint-plugin-import": "2.2.0",
"eslint": "3.11.1",
"expect": "1.20.2",
"istanbul": "0.4.5",
"jsinspect": "0.8.0",
"mocha": "3.2.0"
}
}