forked from webhintio/hint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.99 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
{
"devDependencies": {
"@octokit/plugin-throttling": "^2.6.0",
"@octokit/rest": "^16.28.2",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^8.0.0",
"@types/listr": "^0.14.0",
"@types/node": "^12.6.2",
"@types/semver": "^6.0.1",
"@types/shelljs": "^0.8.5",
"@types/yargs": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"builtin-modules": "^3.1.0",
"chalk": "^2.4.2",
"cpx": "^1.5.0",
"eslint": "^5.15.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-markdown": "^1.0.0",
"execa": "^2.0.3",
"fs-extra": "^8.0.1",
"globby": "^9.2.0",
"husky": "^2.4.0",
"latest-version": "^5.1.0",
"listr": "^0.14.2",
"listr-inquirer": "^0.1.0",
"markdown-link-validator": "^1.0.0",
"markdownlint": "^0.15.0",
"npm-run-all": "^4.1.5",
"p-retry": "^4.1.0",
"rimraf": "^2.6.3",
"rxjs": "^6.5.2",
"semver": "^6.2.0",
"shelljs": "^0.8.3",
"typescript": "^3.5.1",
"yargs": "^13.2.4"
},
"engines": {
"node": ">=8.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/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 .",
"lint:packages": "yarn workspaces run lint",
"lint:scripts": "eslint scripts release --cache --ext js --ext ts --report-unused-disable-directives",
"release": "npm run clean:packages && npm run build:scripts && node dist/release/main.js",
"test": "npm run clean && node scripts/test.js",
"test-all": "yarn clean && node scripts/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": [
"**/vscode",
"**/vscode-languageclient",
"**/vscode-languageserver"
],
"packages": [
"packages/*"
]
}
}