-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "scoop-nsis",
"version": "0.0.0",
"description": "NSIS bucket for `scoop`, a command-line installer for Windows.",
"private": true,
"scripts": {
"build": "node scripts/build.mjs",
"lint:ejs": "ejslint scripts/**/*.ejs",
"lint:js": "eslint scripts/**/*.mjs",
"lint": "npm-run-all --parallel lint:*",
"precommit": "npm run test",
"test": "ava --verbose",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NSIS-Dev/scoop-nsis.git"
},
"keywords": [],
"author": "Jan T. sott",
"license": "ISC",
"bugs": {
"url": "https://github.com/NSIS-Dev/scoop-nsis/issues"
},
"homepage": "https://github.com/NSIS-Dev/scoop-nsis#readme",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"ava": "^5.3.1",
"core-js": "^3.31.0",
"ejs": "^3.1.9",
"ejs-lint": "^2.0.0",
"es6-promise": "^4.2.8",
"eslint": "^8.44.0",
"esm": "^3.2.25",
"hash-wasm": "^4.9.0",
"hasha": "^5.2.2",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jsonlint": "^1.6.3",
"lint-staged": "^13.2.3",
"log-symbols": "^5.1.0",
"make-fetch-happen": "^11.1.1",
"npm-run-all": "^4.1.5"
},
"ava": {
"files": [
"scripts/test.mjs"
],
"require": [
"esm"
]
},
"lint-staged": {
"*.ejs": "ejslint",
"*.(js|mjs)": "eslint --cache --fix",
"*.json": "jsonlint --quiet"
}
}