-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
74 lines (74 loc) · 2.41 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": "action-setup-vim",
"version": "0.0.0",
"private": true,
"description": "GitHub Actions action for installing Vim/Neovim",
"engines": {
"node": ">=20.0.0"
},
"type": "commonjs",
"main": "src/index.js",
"scripts": {
"build": "tsc -p .",
"watch:tsc": "tsc -p . --watch --preserveWatchOutput --pretty",
"watch:mocha": "mocha --watch-files \"./test/*.js\"",
"watch": "concurrently -c auto npm:watch:tsc npm:watch:mocha",
"lint:eslint": "eslint --max-warnings 0 \"./**/*.ts\" eslint.config.mjs",
"lint:tsc-eslint": "tsc -p tsconfig.eslint.json --pretty",
"lint:prettier": "prettier --check \"./**/*.ts\" \"./**/*.mjs\"",
"lint": "concurrently -c auto npm:lint:eslint npm:lint:prettier npm:lint:tsc-eslint",
"fix:eslint": "eslint --fix \"./**/*.ts\"",
"fix:prettier": "prettier --write \"./**/*.ts\" \"./**/*.mjs\"",
"fix": "concurrently -m 1 -c auto npm:fix:eslint npm:fix:prettier",
"mocha": "mocha ./test",
"test": "concurrently -m 1 -c auto npm:build npm:mocha",
"nyc": "nyc --reporter=lcov --reporter=text-summary npm run mocha && (which open && open ./coverage/lcov-report/index.html || true)",
"cov": "concurrently -m 1 -c auto npm:build npm:nyc",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhysd/action-setup-vim.git"
},
"keywords": [
"github",
"action",
"vim",
"neovim",
"text editor"
],
"author": "rhysd <https://rhysd.github.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhysd/action-setup-vim/issues"
},
"homepage": "https://github.com/rhysd/action-setup-vim#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"node-fetch": "^2.6.7",
"shlex": "^2.1.2"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/eslint-plugin-mocha": "^10.4.0",
"@types/mocha": "^10.0.9",
"@types/mock-require": "^3.0.0",
"@types/node": "^22.8.1",
"@types/node-fetch": "^2.6.11",
"concurrently": "^9.0.1",
"eslint": "^9.13.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.11.1",
"husky": "^9.1.6",
"mocha": "^10.7.3",
"mock-require": "^3.0.3",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
}
}