-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 929 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 929 Bytes
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
{
"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",
"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",
"dependencies": {
"eta": "^3.5.0",
"log-symbols": "^7.0.1"
},
"devDependencies": {
"ava": "^5.3.1",
"husky": "^8.0.3",
"jsonlint": "^1.6.3",
"lint-staged": "^13.3.0"
},
"ava": {
"files": [
"scripts/test.mjs"
]
},
"lint-staged": {
"*.json": "jsonlint --quiet"
}
}