-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 KB
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
{
"name": "customize",
"version": "3.0.2",
"description": "A simple framework to create customizable engines",
"repository": {
"type": "git",
"url": "https://github.com/bootprint/customize.git"
},
"author": {
"name": "Nils Knappmeier",
"email": "npm@knappi.org",
"url": "https://github.com/nknapp"
},
"bugs": {
"url": "https://github.com/bootprint/customize/issues"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "eslint --fix .",
"test": "mocha && npm run lint",
"coverage": "nyc mocha",
"postcoverage": "nyc check-coverage coverage/coverage.json --statements 100",
"thought": "thought run -a",
"version": "thoughtful changelog -o -a && npm run thought"
},
"dependencies": {
"debug": "^4.1.1",
"deep-aplus": "^1.0.4",
"glob": "^7.1.6",
"jsonschema": "^1.2.4",
"lodash.mergewith": "^4.6.2"
},
"standard": {
"ignore": [
"test/fixtures/**"
]
},
"files": [
"lib",
"index.js",
"helpers-io.js"
],
"keywords": [],
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"clarify": "^2.1.0",
"dirty-chai": "^2.0.1",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"json-stable-stringify": "^1.0.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"stream-to-string": "^1.2.0",
"thought": "^2.0.0",
"thought-plugin-jsdoc": "^1.1.0",
"thoughtful-release": "^1.0.0",
"trace-and-clarify-if-possible": "^1.0.5"
}
}