UNPKG

938 BJSONView Raw
1{
2 "name": "makensis-cli",
3 "version": "0.11.2",
4 "description": "CLI for the makensis wrapper on Node, compiles NSIS scripts",
5 "main": "index.js",
6 "bin": {
7 "mn": "./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 "@nsis/language-data": "^0.6.0",
22 "commander": "^2.19.0",
23 "generator-nsis": "^0.8.0",
24 "makensis": "^0.17.0",
25 "update-notifier": "^2.5.0",
26 "yeoman-environment": "^2.3.4"
27 },
28 "devDependencies": {
29 "@types/node": "^11.10.4",
30 "tslint": "^5.13.1",
31 "typescript": "^3.3.3333"
32 },
33 "scripts": {
34 "build": "tsc --pretty --project ./",
35 "dev": "tsc --watch --pretty --project ./",
36 "prepublishOnly": "tslint --project . && npm run build",
37 "test": "tslint --project ."
38 }
39}