-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "fizz-buzz-tdd",
"version": "1.0.0",
"description": "biblioteca de JS com TDD.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint src/*.js",
"prepush": "npm run lint && npm run test:coverage",
"test": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register",
"test:tdd": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register --watch",
"test:coverage": "nyc npm test"
},
"nyc": {
"functions": 80,
"lines": 80,
"check-coverage": true,
"reporter": ["text", "html"],
"exclude": ["tests/**"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/edipojs/fizz-buzz-tdd.git"
},
"keywords": ["js", "tdd", "library", "fizz", "buzz", "fizz-buzz"],
"author": "Édipo Juan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/edipojs/fizz-buzz-tdd/issues"
},
"homepage": "https://github.com/edipojs/fizz-buzz-tdd#readme",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"husky": "^0.15.0-rc.13",
"mocha": "^5.0.5",
"nyc": "^11.6.0"
}
}