aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorLucifer <[email protected]>2019-12-17 19:31:07 +0530
committerLucifer <[email protected]>2019-12-17 19:31:07 +0530
commit6fd1ee516695a2970a02e427f381db86215a1149 (patch)
tree843afe8b124e99b6e944262f7b8bbd85945ecd23 /package.json
parent1767d0e654f09ebf633b886ec1b701d740932028 (diff)
downloadnativekit-6fd1ee516695a2970a02e427f381db86215a1149.tar.xz
nativekit-6fd1ee516695a2970a02e427f381db86215a1149.zip
Added make-dir and ncp modules
Diffstat (limited to 'package.json')
-rw-r--r--package.json9
1 files changed, 8 insertions, 1 deletions
diff --git a/package.json b/package.json
index 31708b9..3a6f6be 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,10 @@
"description": "Native UI Kit for Electron Framework",
"scripts": {
"start-mac-template": "electron templates/mac",
- "start-win-template": "electron templates/win"
+ "start-win-template": "electron templates/win",
+ "build-mac": "NODE_ENV=production node index.js buildForMac",
+ "build-win": "NODE_ENV=production node index.js buildForWin",
+ "build": "NODE_ENV=production node index.js build"
},
"repository": {
"type": "git",
@@ -25,5 +28,9 @@
"homepage": "https://www.nativekit.co",
"devDependencies": {
"electron": "7.1.4"
+ },
+ "dependencies": {
+ "make-dir": "^3.0.0",
+ "ncp": "^2.0.0"
}
}