This repository has been archived by the owner on Mar 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.53 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
{
"name": "boilerplator",
"version": "0.4.5",
"description": "A CLI tool to dynamically generate projects from user-defined templates.",
"author": "DaCurse",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/DaCurse/boilerplator"
},
"bugs": {
"url": "https://github.com/DaCurse/boilerplator/issues"
},
"homepage": "https://github.com/DaCurse/boilerplator#readme",
"keywords": [
"cli",
"templates",
"generator",
"boilerplate"
],
"scripts": {
"format": "prettier --write \"{src,tests,bin}/**/*.js\"",
"lint": "eslint \"{src,tests,bin}/**/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"bin": {
"boil": "./bin/boil"
},
"dependencies": {
"commander": "^6.2.0",
"cosmiconfig": "^7.0.0",
"dotenv": "^8.2.0",
"is-regex": "^1.1.1",
"path-type": "^4.0.0",
"pretty-ms": "^7.0.1",
"recursive-copy": "^2.0.11",
"rimraf": "^3.0.2",
"simple-git": "^2.23.0",
"tree-node-cli": "^1.4.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.14.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jsesc": "^3.0.2",
"memfs": "^3.2.0",
"prettier": "^2.2.0",
"stringify-object": "^3.3.0",
"unionfs": "^4.4.0"
},
"jest": {
"setupFiles": [
"./tests/setup.js"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint"
}
}
}