-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "licensewatch",
"version": "2.0.1",
"description": "Recurses a given node_modules directory to fetch all npm package licenses",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"lint": "standard --fix",
"test": "npm run build && node --harmony node_modules/.bin/ava",
"test:watch": "npm run build && node --harmony node_modules/.bin/ava --watch",
"test:coverage": "npm run build && nyc node --harmony node_modules/.bin/ava",
"commit": "git-cz",
"docs": "npm run docs:code && npm run docs:api",
"docs:api": "doxdox *.js --layout bootstrap --output docs/index.html",
"docs:code": "docco *.js --output docs/code",
"build": "babel src -d dist"
},
"author": "Liran Tal",
"license": "MIT",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.0.20",
"babel-polyfill": "^6.0.16",
"babel-preset-env": "^1.6.0",
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"docco": "^0.8.0",
"doxdox": "^2.0.1",
"nyc": "^12.0.1",
"standard": "^12.0.0"
},
"nyc": {
"statements": 90,
"branches": 80,
"functions": 90,
"lines": 90,
"reporter": [
"lcov",
"text-summary",
"text"
],
"cache": true,
"check-coverage": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"bluebird": "^3.4.7",
"glob": "^7.1.1"
}
}