forked from h5bp/create-html5-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.3 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": "create-html5-boilerplate",
"version": "0.2.0",
"description": "An npm based quickstart app for HTML5-Boilerplate",
"keywords": [],
"homepage": "https://html5boilerplate.com/",
"bugs": {
"url": "https://github.com/h5bp/create-html5-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/h5bp/create-html5-boilerplate.git"
},
"license": "MIT",
"author": "@h5bp",
"main": "index.js",
"bin": {
"create-html5-boilerplate": "./index.js"
},
"scripts": {
"test": "jest",
"format": "prettier --write \"./cli.js\" \"tests/*.js\"",
"coverage": "jest --coverage --collectCoverageOnlyFrom ./lib/cli.js"
},
"files": [
"lib/**/*",
"license.txt",
"index.js",
"README.md"
],
"dependencies": {
"chalk": "^4.1.0",
"compare-versions": "^3.6.0",
"elapsed-time-logger": "^1.1.2",
"fast-glob": "^3.2.4",
"fs-extra": "^9.0.1",
"fuzzy": "^0.1.3",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.2.0",
"ora": "^5.0.0",
"pacote": "^11.1.10",
"yargs-parser": "^20.2.3"
},
"devDependencies": {
"husky": "^4.3.0",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}