-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
65 lines (65 loc) · 1.74 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": "create-html5-boilerplate",
"version": "1.0.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",
"type": "module",
"bin": {
"create-html5-boilerplate": "./index.js"
},
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"lint": "eslint lib/cli.js",
"format": "prettier --write \"./lib/cli.js\" \"tests/*.js\"",
"coverage": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --coverage --collectCoverageOnlyFrom ./lib/cli.js"
},
"files": [
"lib/**/*",
"license.txt",
"index.js",
"README.md"
],
"dependencies": {
"chalk": "^5.3.0",
"compare-versions": "^6.0.0",
"elapsed-time-logger": "^1.1.7",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"fuzzy": "^0.1.3",
"inquirer": "^9.2.12",
"inquirer-autocomplete-prompt": "^3.0.0",
"jest-light-runner": "^0.5.0",
"npm": "^10.5.2",
"ora": "^7.0.1",
"pacote": "^17.0.4",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}