-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "js-com-tdd",
"version": "1.0.0",
"description": "Biblioteca do curso de JS com TDD na prática.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint src/**/*.js",
"prepush": "npm run lint && npm run test:coverage",
"test": "./node_modules/.bin/mocha src/**/*.spec.js --require babel-register",
"test:tdd": "./node_modules/.bin/mocha src/**/*.spec.js --require babel-register --watch",
"test:coverage": "nyc npm test",
"bail": "npm runtest -- --bail"
},
"nyc": {
"functions": 80,
"lines": 80,
"check-coverage": false,
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dheyson/js-tdd-course.git"
},
"keywords": [
"js",
"tdd",
"library"
],
"author": "Dheyson Alves <[email protected]> (https://dheysonalves-tech.surge.sh/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dheyson/js-tdd-course/issues"
},
"homepage": "https://github.com/Dheyson/js-tdd-course#readme",
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"husky": "^3.1.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0"
},
"dependencies": {
"sinon-chai": "^3.7.0"
}
}