-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 2.29 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
{
"name": "@voldikss/coc-extensions",
"version": "1.0.0",
"description": "coc extensions monorepo maintained by voidikss",
"private": true,
"author": "voidikss",
"license": "MIT",
"scripts": {
"dev": "node ./scripts/dev.js",
"build": "node ./scripts/build.js",
"format": "prettier --config ./.prettierrc.json --write packages/**/*.{ts,js}",
"eslint": "eslint -c ./.eslintrc.json --ext .ts,.js --fix packages/",
"unit-test": "pnpm jest --config=unit-test.jest.config.js --runInBand --ci --forceExit --detectOpenHandles",
"type-check": "tsc --noEmit -p ./tsconfig.json",
"type-coverage": "type-coverage",
"bump": "node scripts/bump.js",
"publish": "node ./scripts/publish.js",
"update-engine": "node ./scripts/update-engine.js",
"postinstall": "echo postinstall.js",
"prepare": "husky install"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-strip": "^2.1.0",
"@types/eslint": "^8.4.3",
"@types/jest": "27.0.0",
"@types/minimist": "^1.2.2",
"@types/node": "12.12.0",
"@types/prettier": "^2.6.3",
"@types/semver": "^7.3.10",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"chalk": "4.1.0",
"coc.nvim": "^0.0.81",
"enquirer": "^2.3.6",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"execa": "4.1.0",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"jest": "27.0.0",
"lint-staged": "^13.0.2",
"minimist": "^1.2.6",
"prettier": "^2.6.2",
"rollup": "^2.75.6",
"rollup-plugin-typescript2": "^0.32.1",
"semver": "^7.3.7",
"ts-jest": "^27.1.4",
"tslib": "^2.4.0",
"type-coverage": "^2.22.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --config ./.prettierrc.json --write",
"eslint --config ./.eslintrc.json --fix --quiet"
]
},
"typeCoverage": {
"updateIfHigher": true,
"showRelativePath": true,
"atLeast": 97.12,
"detail": true,
"ignoreFiles": [
"*-spec.ts$"
]
}
}