forked from idleberg/node-makensis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.97 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.97 KB
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
75
76
77
78
{
"name": "makensis",
"version": "0.23.4",
"description": "A Node wrapper for makensis, the NSIS compiler",
"main": "./dist/makensis.js",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/idleberg/node-makensis.git"
},
"keywords": [
"nsis",
"makensis"
],
"license": "MIT",
"dependencies": {
"@nsis/language-data": "^0.7.4",
"quoted-string-space-split": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.1.0",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"ava": "^3.14.0",
"eslint": "^7.16.0",
"esm": "^3.2.25",
"husky": "^4.3.6",
"jsonlint": "^1.6.3",
"lint-staged": ">=10",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"remark-preset-prettier": "^0.4.0",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"scripts": {
"build": "rollup -c",
"dev": "npm run start",
"fix": "eslint --fix ./src",
"lint:json": "jsonlint --quiet ./*.json",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint:ts": "eslint ./src --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"prepublishOnly": "npm run lint && npm run build",
"start": "rollup -w -c",
"test": "ava ./test/commands.js ./test/encoding.js --verbose",
"test:wine": "WINEDEBUG=-all ava ./test/wine.js --verbose --timeout 2m"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"ava": {
"require": [
"esm"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 4
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.json": "jsonlint --quiet",
"*.md": "prettier --write"
}
}