-
Notifications
You must be signed in to change notification settings - Fork 720
/
Copy pathpackage.json
94 lines (94 loc) · 2.62 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"ava": {
"failFast": false,
"files": [
"dist/tests/**/*.js",
"!dist/tests/**/fixtures/**/*.js"
],
"timeout": "1m",
"workerThreads": false
},
"bin": {
"create-hintrc": "./dist/src/create-hintrc.js"
},
"dependencies": {
"@hint/utils": "^7.0.24",
"@hint/utils-debug": "^1.0.11",
"@hint/utils-fs": "^1.0.16",
"browserslist": "^4.24.2",
"inquirer": "^8.2.2"
},
"description": "webhint's configuration file initializer package",
"devDependencies": {
"@types/inquirer": "^8.2.0",
"@types/lodash": "^4.14.194",
"@types/node": "^20.1.1",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^4.33.0",
"ava": "^4.3.3",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-markdown": "^2.2.1",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"hint": "^7.1.13",
"inquirer": "^8.2.2",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"path-browserify": "^1.0.1",
"proxyquire": "^2.1.3",
"rimraf": "^5.0.0",
"sinon": "^13.0.1",
"ts-loader": "^9.4.2",
"typescript": "^4.5.5",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist/src"
],
"homepage": "https://webhint.io/",
"keywords": [
"configuration",
"create",
"hint",
"hintrc",
"webhint"
],
"license": "Apache-2.0",
"name": "create-hintrc",
"nyc": {
"extends": "../../.nycrc"
},
"repository": {
"directory": "packages/create-hintrc",
"type": "git",
"url": "https://github.com/webhintio/hint.git"
},
"scripts": {
"build": "npm-run-all build:*",
"build-release": "npm run clean && npm run build:assets && webpack",
"build:assets": "copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist",
"build:ts": "tsc -b",
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore",
"lint:dependencies": "node ../../scripts/lint-dependencies.js",
"lint:md": "node ../../scripts/lint-markdown.js",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"test-release": "npm test && npm run build-release",
"watch": "npm run build && npm-run-all --parallel -c watch:*",
"watch:assets": "npm run build:assets -- -w --no-initial",
"watch:test": "ava --watch",
"watch:ts": "npm run build:ts -- --watch",
"webpack": "webpack"
},
"version": "4.0.15"
}