UNPKG

758 BJSONView Raw
1{
2 "name": "makensis-cli",
3 "version": "0.6.2",
4 "description": "CLI for the makensis wrapper on Node, compiles NSIS scripts",
5 "main": "index.js",
6 "bin": {
7 "nn": "./index.js",
8 "nsis": "./index.js"
9 },
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/idleberg/node-makensis-cli.git"
13 },
14 "keywords": [
15 "nsis",
16 "makensis",
17 "cli"
18 ],
19 "license": "MIT",
20 "dependencies": {
21 "commander": "^2.14.1",
22 "makensis": "^0.12.4",
23 "update-notifier": "^2.3.0"
24 },
25 "devDependencies": {
26 "@types/node": "^9.4.2",
27 "tslint": "^5.9.1",
28 "typescript": "^2.7.1"
29 },
30 "scripts": {
31 "build": "tsc -p ./",
32 "prepublish": "tslint --project . && npm run build",
33 "test": "tslint --project ."
34 }
35}