-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1021 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
{
"name": "js-tdd-course",
"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",
"precommit": "npm run lint",
"test": "./node_modules/.bin/mocha test/**/*.spec.js",
"test:tdd": "./node_modules/.bin/mocha test/**/*.spec.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/claudvanbarret/js-tdd-course.git"
},
"keywords": [
"js",
"tdd",
"library"
],
"author": "Claudivan Barreto <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/claudvanbarret/js-tdd-course/issues"
},
"homepage": "https://github.com/claudvanbarret/js-tdd-course#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"mocha": "^5.0.0"
}
}