-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "fancy-boilerplate",
"version": "1.0.0",
"description": "A fancy JS boilerplate",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/webpack --colors",
"test": "./node_modules/.bin/mocha --compilers js:babel-register tests/**/*.spec.js",
"test:coverage": "nyc npm test",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/.bin/eslint --env mocha .",
"precommit": "npm run lint && npm run test:coverage"
},
"nyc": {
"check-coverage": true,
"functions": 80,
"lines": 80,
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dayanyrec/fancy-boilerplate.git"
},
"keywords": [
"js",
"tdd",
"boilerplate"
],
"author": "Dayany Espindola <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dayanyrec/fancy-boilerplate/issues"
},
"homepage": "https://github.com/dayanyrec/fancy-boilerplate#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"husky": "^0.14.3",
"mocha": "^3.5.2",
"nyc": "^11.2.1",
"webpack": "^3.5.6"
}
}