forked from webhintio/hint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.32 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
{
"devDependencies": {
"@octokit/core": "^3.1.1",
"@octokit/plugin-throttling": "^3.3.0",
"@octokit/rest": "^18.0.0",
"@types/execa": "^2.0.0",
"@types/fs-extra": "^9.0.1",
"@types/listr": "^0.14.2",
"@types/node": "^13.13.4",
"@types/semver": "^7.2.0",
"@types/shelljs": "^0.8.8",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.12.0",
"builtin-modules": "^3.1.0",
"chalk": "^4.0.0",
"cpx": "^1.5.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-markdown": "^1.0.2",
"execa": "^4.0.3",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"husky": "^4.2.5",
"latest-version": "^5.1.0",
"listr": "^0.14.2",
"listr-inquirer": "^0.1.0",
"markdown-link-validator": "^1.0.0",
"markdownlint": "^0.20.4",
"npm-run-all": "^4.1.5",
"p-retry": "^4.2.0",
"rimraf": "^3.0.2",
"rxjs": "^6.6.0",
"semver": "^7.3.2",
"shelljs": "^0.8.4",
"tsort": "^0.0.1",
"typescript": "^3.8.3",
"unzipper": "^0.10.11",
"yargs": "^15.3.1"
},
"engines": {
"node": ">=10.0.0"
},
"husky": {
"hooks": {
"commit-msg": "node scripts/check-commit-message.js",
"prepare-commit-msg": "node scripts/prepare-commit-message.js"
}
},
"name": "@hint/monorepo",
"private": true,
"scripts": {
"build": "yarn clean && yarn update:references && node scripts/build-or-test-all.js build",
"build:scripts": "npm run clean:root && npm run lint:scripts && npm-run-all --parallel build:scripts:*",
"build:scripts:non-ts": "cpx \"./scripts/{!(*.ts),.!(ts)}\" dist/scripts",
"build:scripts:ts": "tsc",
"build:ts": "tsc -b",
"cache": "node scripts/ava-cache.js",
"clean": "npm-run-all clean:*",
"clean:packages": "rimraf \"packages/!extension-vscode/{dist,package-lock.json,yarn.lock}\"",
"clean:root": "rimraf dist",
"lint": "npm-run-all --parallel lint:*",
"lint:dependencies": "node scripts/lint-dependencies.js",
"lint:md": "node scripts/lint-markdown && markdown-link-validator . -i www\\.cloudflare\\.com/learning/dns/what-is-dns/ -i twitter\\.com/jacobrossi/status/591435377291866112 -f igm",
"lint:packages": "yarn workspaces run lint",
"lint:scripts": "eslint scripts release --cache --ext .js,.md,.ts",
"prebuild": "node scripts/prebuild.js",
"release": "npm run clean:packages && npm run build:scripts && node dist/release/main.js",
"test": "npm run clean && npm run prebuild && node scripts/test.js",
"test-all": "yarn clean && node scripts/build-or-test-all.js",
"test-root": "npm run clean && npm run lint && npm-run-all --parallel build:scripts:*",
"update:references": "npm run build:scripts && node dist/scripts/update-tsconfig-references.js",
"watch:scripts": "npm run clean && npm-run-all --continue-on-error --parallel watch:scripts:*",
"watch:scripts:non-ts": "npm run build:scripts:non-ts && npm run build:scripts:non-ts -- --watch --no-initial",
"watch:scripts:ts": "npm run build:scripts:ts -- --watch"
},
"workspaces": {
"nohoist": [
"**/acorn",
"**/acorn-jsx",
"**/acorn-jsx-walk",
"**/acorn-walk",
"**/vscode",
"**/vscode-languageclient",
"**/vscode-languageserver"
],
"packages": [
"packages/*"
]
}
}