-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.94 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
{
"name": "ts-quickfixes",
"private": true,
"description": "Quick fixes for typescript",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"setup": "npm ci && lerna bootstrap && npm ci --prefix ./test-environment",
"clean": "rm -rf ./packages/**/out/ && rm -rf ./packages/**/*.tsbuildinfo",
"build": "lerna exec -- tsc -b",
"watch": "tsc -b ./tsconfig.json --watch",
"lint": "npm run lint:base -- \"**/*.{ts,js}\" --ext .ts,.js",
"lint:base": "eslint --color --ignore-path .gitignore --cache",
"test": "lerna run --stream test",
"test:plugin": "npm run build && lerna run --stream --scope ts-quickfixes-plugin test",
"test:plugin:watch": "npm run build && npx lerna exec --scope ts-quickfixes-plugin -- jest --watch",
"test:extension": "npm run build && lerna run --stream --scope ts-quickfixes-extension test",
"test:e2e": "npm run build && lerna run --stream --scope ts-quickfixes-e2e test",
"shipit": "lerna run --stream shipit",
"install-docs": "ts-node ./install-docs.ts",
"logs": "tail -f ../ts-logs.txt | grep --line-buffered --color=always ts-quickfixes-plugin",
"lernaupdate": "lernaupdate"
},
"lint-staged": {
"*.{md,gif}": [
"npm run install-docs"
],
"*.ts": [
"npm run lint:base -- --fix"
]
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@types/fs-extra": "^9.0.5",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.21",
"@types/mock-fs": "^4.13.0",
"@types/node": "^14.14.14",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"commitizen": "^4.2.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"fs-extra": "^10.0.0",
"fs-monkey": "^1.0.1",
"glob": "^7.1.6",
"husky": "^6.0.0",
"jest": "^26.6.1",
"lerna": "^4.0.0",
"lerna-update-wizard": "^0.17.8",
"lint-staged": "^11.0.0",
"memfs": "^3.2.1",
"mock-fs": "^4.13.0",
"npm-run-all": "^4.1.5",
"pinst": "^2.1.4",
"prettier": "^2.1.1",
"semantic-release": "^17.3.0",
"semantic-release-monorepo": "^7.0.3",
"strip-ansi": "^6.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.2",
"unionfs": "^4.4.0",
"vsce": "^1.83.0",
"vscode-test": "^1.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/tamj0rd2/ts-quickfixes/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tamj0rd2/ts-quickfixes.git"
},
"homepage": "https://github.com/tamj0rd2/ts-quickfixes#readme",
"dependencies": {},
"keywords": [],
"author": "tamj0rd2"
}