-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "homebrew-makensis",
"version": "0.0.0",
"description": "NSIS formulae for Homebrfew",
"private": true,
"scripts": {
"build": "node cmd/build.mjs",
"fix": "eslint --fix ./cmd/**/*.mjs",
"lint:ejs": "ejslint ./cmd/**/*.ejs",
"lint:js": "eslint ./cmd/**/*.mjs",
"lint": "npm-run-all --parallel lint:*",
"test": "npm run lint",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NSIS-Dev/homebrew-makensis.git"
},
"keywords": [
"nsis",
"brew",
"homebrew",
"homebrew formula",
"homebrew formulae"
],
"author": "Jan T. Sott",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/NSIS-Dev/homebrew-makensis/issues"
},
"homepage": "https://github.com/NSIS-Dev/homebrew-makensis#readme",
"devDependencies": {
"ejs": "^3.1.5",
"ejs-lint": "^2.0.0",
"es6-promise": "^4.2.8",
"eslint": "^8.44.0",
"hash-wasm": "^4.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"log-symbols": "^5.0.0",
"make-fetch-happen": "^11.1.1",
"npm-run-all": "^4.1.5"
},
"lint-staged": {
"*.ejs": "ejslint",
"*.mjs": "eslint --cache --fix"
},
"dependencies": {
"mri": "^1.2.0"
}
}