-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
41
{
"name": "js-tdd",
"version": "1.0.0",
"description": "Javascript Library to learn TDD",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint src/**/*.js",
"test": "mocha --recursive --require babel-register",
"test:watch": "mocha --recursive --require babel-register --reporter min --watch",
"test:coverage": "nyc npm test",
"prepush": "npm run lint && npm run test:coverage"
},
"nyc": {
"reporter": ["text", "html"],
"exclude": "test/**/*.spec.js",
"check-coverage": true,
"functions": 80,
"lines": 80
},
"keywords": [
"js",
"tdd"
],
"author": "Ronalson Filho <contact@ronalson.com.br>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"mocha": "^4.1.0",
"nyc": "^11.4.1"
}
}