-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.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 \"./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.0.1",
"compare-versions": "^5.0.1",
"elapsed-time-logger": "^1.1.7",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"fuzzy": "^0.1.3",
"inquirer": "^8.2.4",
"inquirer-autocomplete-prompt": "^2.0.0",
"jest-light-runner": "^0.4.0",
"npm": "^8.15.1",
"ora": "^5.4.0",
"pacote": "^13.6.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}