-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.66 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
{
"name": "base-volta-off-of-nwjs",
"version": "1.0.5",
"main": "index.js",
"type": "module",
"bin": "./index.js",
"license": "MIT",
"description": "Updates Volta config in package.json so Node match's what your NW.js version uses",
"scripts": {
"lint": "eslint --rulesdir=./node_modules/eslint-config-tjw-jest/custom-eslint-rules --ext .js --config=.eslintrc.cjs .eslintrc.cjs index.js library.js tests",
"fix": "eslint --fix --rulesdir=./node_modules/eslint-config-tjw-jest/custom-eslint-rules --ext .js --config=.eslintrc.cjs .eslintrc.cjs index.js library.js tests",
"test": "vitest run --pool=forks --coverage"
},
"ManifestComments": [
"Pinned eslint to 8.52.0 until I have time to switch to using @stylistic",
"eslint 8.52.0 was the last version to officially support stylistic linting, now moved to separate repo"
],
"dependencies": {
"semver": "^7.6.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "8.52.0",
"eslint-config-tjw-base": "^2.0.0",
"eslint-config-tjw-import": "^1.0.0",
"eslint-config-tjw-jest": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"vitest": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nwutils/base-volta-off-of-nwjs.git"
},
"keywords": [
"nw.js",
"volta",
"node.js",
"version",
"management",
"automated"
],
"author": "TheJaredWilcurt",
"bugs": {
"url": "https://github.com/nwutils/base-volta-off-of-nwjs/issues"
},
"homepage": "https://github.com/nwutils/base-volta-off-of-nwjs#readme",
"volta": {
"node": "21.4.0",
"npm": "10.2.4"
}
}