forked from neovim/node-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "neovim",
"version": "5.2.2-dev.0",
"private": true,
"workspaces": [
"packages/neovim",
"packages/decorators",
"packages/integration-tests",
"packages/example-plugin",
"packages/example-plugin-decorators"
],
"homepage": "https://github.com/neovim/node-client",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"dev": "npm run --stream --parallel dev --workspaces --if-present",
"publish:neovim": "cd packages/neovim && cp ../../README.md . && cp ../../CHANGELOG.md . && npm publish",
"test": "npm run test --workspaces --if-present",
"test-build": "npm run test-build --workspaces --if-present",
"test-staged": "npm run test-staged --workspaces --if-present -- --",
"test-missing-apis": "npm run test-missing-apis --workspaces --if-present",
"test-lint": "npm run lint",
"lint": "eslint --format=unix packages/*/src/**/*.ts packages/*/src/*.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"npm run test-staged"
]
},
"volta": {
"node": "16.13.1"
}
}