UNPKG

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