-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.92 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
{
"dependencies": {},
"devDependencies": {
"@types/node": "^16.4.9",
"@types/shelljs": "^0.8.9",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"ava": "^3.15.0",
"builtin-modules": "^3.2.0",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-markdown": "^2.2.0",
"eventemitter2": "^6.4.4",
"husky": "^7.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"p-retry": "^4.6.1",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"sinon": "^11.1.2",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"commit-msg": "node scripts/check-commit-message.js",
"prepare-commit-msg": "node scripts/prepare-commit-message.js"
}
},
"main": "./dist/src/index.js",
"private": true,
"scripts": {
"ava": "ava",
"build": "yarn clean && yarn update:references && node scripts/test-all.js build",
"build:assets": "copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist",
"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/scripts",
"build:scripts:ts": "tsc",
"build:ts": "tsc",
"clean": "rimraf dist",
"clean:root": "rimraf dist",
"lint": "npm-run-all --parallel lint:*",
"lint:dependencies": "node scripts/lint-dependencies.js",
"lint:scripts": "eslint scripts --cache --ext js --ext ts --report-unused-disable-directives",
"test": "yarn clean && npm run lint && node scripts/test-all.js",
"update:references": "npm run build:scripts && node dist/scripts/update-tsconfig-references.js",
"watch:ts": "npm run build:ts -- --watch"
},
"version": "0.16.0",
"workspaces": {
"nohoist": [
"**/vscode"
],
"packages": [
"packages/*"
]
}
}