This repository has been archived by the owner on Jun 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.83 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "makensis-cli",
"version": "0.15.0",
"description": "CLI for the Node.js makensis wrapper, compiles NSIS scripts",
"main": "./bin/mn.js",
"bin": {
"mn": "bin/mn.js"
},
"repository": {
"type": "git",
"url": "https://github.com/idleberg/node-makensis-cli.git"
},
"keywords": [
"nsis",
"makensis",
"cli"
],
"license": "MIT",
"dependencies": {
"@nsis/language-data": "^0.7.4",
"commander": "^6.1.0",
"generator-nsis": "^0.8.5",
"get-stdin": "^8.0.0",
"makensis": "^0.23.4",
"update-notifier": "^5.1.0",
"yeoman-environment": "^2.10.3"
},
"devDependencies": {
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.9.0",
"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",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"scripts": {
"build": "tsc --pretty --project ./",
"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": "tsc --watch --pretty --project ./",
"test": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 4
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.json": "jsonlint --quiet",
"*.md": "prettier --write"
}
}