-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 944 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
35
36
37
38
{
"name": "javascript-mocha",
"description": "skeleton for Node.js users.",
"version": "0.1.0",
"author": {
"name": "TDD BaseCamp and other contributors"
},
"bugs": {
"url": "https://github.com/tddbc/javascript-mocha/issues"
},
"devDependencies": {
"eslint": "^5.0.1",
"espower-loader": "^1.2.2",
"intelli-espower-loader": "^1.0.1",
"lodash": ">=4.17.21",
"mocha": "^10.2.0",
"power-assert": "^1.6.0"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/tddbc/javascript-mocha",
"keywords": [
"TDDBC"
],
"license": "MIT",
"main": "lib/sample.js",
"repository": {
"type": "git",
"url": "git://github.com/tddbc/javascript-mocha.git"
},
"scripts": {
"lint": "eslint 'lib/**' 'test/**'",
"pretest": "npm run lint",
"test": "mocha --require intelli-espower-loader",
"watch": "mocha --require intelli-espower-loader --watch"
}
}