forked from h5bp/create-html5-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 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
{
"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",
"lint": "eslint lib/cli.js",
"format": "prettier --write \"./cli.js\" \"tests/*.js\"",
"coverage": "jest --coverage --collectCoverageOnlyFrom ./lib/cli.js",
"semantic-release": "semantic-release"
},
"files": [
"lib/**/*",
"license.txt",
"index.js",
"README.md"
],
"dependencies": {
"chalk": "^4.1.2",
"compare-versions": "^4.1.2",
"elapsed-time-logger": "^1.1.7",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"fuzzy": "^0.1.3",
"inquirer": "^8.2.0",
"inquirer-autocomplete-prompt": "^1.4.0",
"ora": "^5.4.0",
"pacote": "^12.0.2",
"yargs-parser": "^21.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"husky": "^7.0.4",
"jest": "^27.4.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.1",
"semantic-release": "^18.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}