-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "thought",
"version": "4.0.1",
"description": "A customizable documentation generator for github projects",
"repository": {
"type": "git",
"url": "https://github.com/nknapp/thought.git"
},
"author": {
"name": "Nils Knappmeier",
"email": "npm@knappi.org",
"url": "https://github.com/nknapp"
},
"bugs": {
"url": "https://github.com/nknapp/thought/issues"
},
"main": "index.js",
"bin": {
"thought": "bin/thought.js"
},
"preferGlobal": true,
"files": [
"index.js",
"customize.js",
"lib",
"handlebars",
"bin"
],
"engines": {
"node": ">=14"
},
"license": "MIT",
"scripts": {
"format": "prettier --write '**/*.js'",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint --fix .",
"test": "mocha && npm run lint",
"coverage": "nyc --reporter=lcov --reporter=html --reporter=text-summary mocha",
"postcoverage": "nyc check-coverage",
"changelog": "standard-changelog && git add CHANGELOG.md",
"thought": "bin/thought.js run -a",
"postthought": "node examples/run-thought.js",
"version": "npm run changelog && npm run thought",
"postversion": "git push --tags && npm publish"
},
"dependencies": {
"archy": "^1.0.0",
"commander": "^5.1.0",
"customize": "^4.0.4",
"customize-engine-handlebars": "^4.0.4",
"customize-write-files": "^4.0.4",
"debug": "^4.3.5",
"deep-aplus": "^1.0.4",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"handlebars": "^4.7.8",
"lodash.escaperegexp": "^4.1.2",
"lodash.groupby": "^4.6.0",
"pify": "^5.0.0",
"semver": "^7.6.2",
"simple-git": "^3.25.0",
"trace-and-clarify-if-possible": "^1.0.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lodash.isplainobject": "^4.0.6",
"mocha": "^10.6.0",
"nock": "^13.0.2",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"prettier-config-standard": "^1.0.1",
"standard-changelog": "^2.0.24",
"thought-plugin-jsdoc": "^2.0.0"
},
"keywords": [],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
}
}