-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.86 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
58
59
60
61
62
63
64
65
66
67
68
{
"author": "Daniel Rasmussen <[email protected]> (https://dlras.net/)",
"bugs": {
"url": "https://github.com/dlras2/ext-essentials/issues"
},
"dependencies": {
"debug": "^3.1.0",
"require-directory": "^2.1.1"
},
"description": "",
"devDependencies": {
"clear-require": "^2.0.0",
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.5.0",
"husky": "^0.15.0-rc.3",
"js-yaml": "^3.10.0",
"jszip": "^3.1.5",
"lint-staged": "^6.1.0",
"mocha": "^5.0.0",
"mock-fs": "^4.4.2",
"mock-require": "^3.0.1",
"npm-run-all": "^4.1.2",
"nyc": "^11.4.1",
"prettier": "^1.10.2"
},
"homepage": "https://github.com/dlras2/ext-essentials#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"license": "ISC",
"lint-staged": {
"*.js": [
"node ./node_modules/eslint/bin/eslint.js --fix",
"git add"
]
},
"main": "lib/index.js",
"name": "ext-essentials",
"nyc": {
"all": true,
"exclude": [
"coverage",
"test"
],
"reporter": [
"html",
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlras2/ext-essentials.git"
},
"scripts": {
"coverage": "node ./node_modules/nyc/bin/nyc npm run test-all && cmd /c start ./coverage/index.html",
"fix": "node ./node_modules/eslint/bin/eslint.js . --fix --ignore-path .gitignore",
"lint": "node ./node_modules/eslint/bin/eslint.js . --ignore-path .gitignore",
"test": "node ./node_modules/npm-run-all/bin/npm-run-all lint test-all -nc --silent",
"test-all": "node ./node_modules/mocha/bin/mocha",
"test-unit": "node ./node_modules/mocha/bin/mocha --grep Unit",
"test-integration": "node ./node_modules/mocha/bin/mocha --grep Integration"
},
"version": "0.0.1"
}