forked from webhintio/hint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 3.33 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
{
"devDependencies": {
"@octokit/core": "^3.5.1",
"@octokit/plugin-throttling": "^4.0.0",
"@octokit/rest": "^19.0.7",
"@types/fs-extra": "^9.0.13",
"@types/listr": "^0.14.4",
"@types/node": "^20.1.1",
"@types/semver": "^7.3.10",
"@types/shelljs": "^0.8.11",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^4.33.0",
"builtin-modules": "^3.3.0",
"chalk": "^4.1.2",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-markdown": "^2.2.1",
"fs-extra": "^11.1.0",
"globby": "^11.0.4",
"json-schema-to-typescript": "^11.0.3",
"latest-version": "^5.1.0",
"listr": "^0.14.2",
"listr-inquirer": "^0.1.0",
"markdown-link-validator": "^1.0.1",
"markdownlint": "^0.25.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0",
"rxjs": "^7.8.0",
"semver": "^7.3.5",
"shelljs": "^0.8.5",
"tsort": "^0.0.1",
"typescript": "^4.5.5",
"unzipper": "^0.10.11",
"yargs": "^17.4.1"
},
"engines": {
"node": ">=14.0.0"
},
"name": "@hint/monorepo",
"private": true,
"resolutions": {
"json-schema": "^0.4.0",
"node-fetch": "^2.x",
"thenify": "^3.3.1",
"tsconfig-paths": "^4.1.2"
},
"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": "copyfiles \"./scripts/**/{!(*.ts),.!(ts)}\" dist",
"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:3rd-party": "npm run build:scripts && node dist/scripts/update-3rd-party.js",
"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/*"
]
}
}