forked from sihorton/electron-sqlite3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.51 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
{
"name": "electron-sqlite3",
"version": "1.0.0",
"description": "Example electron app with sqlite3 integration",
"repository": "https://github.com/bytheway/electron-sqlite3.git",
"main": "main.js",
"dependencies": {
"jquery": "^2.1.4",
"sqlite3": "3.1.1"
},
"devDependencies": {
"electron-packager": "^5.2.1",
"electron-prebuilt": "^0.36.4"
},
"keywords": [
"electron",
"atom",
"sqlite3"
],
"bugs": {
"url": "https://github.com/bytheway/electron-sqlite3/issues"
},
"scripts": {
"start": "electron .",
"build": "electron-packager . electron-sqlite3 --out=dist --ignore=dist --prune --asar --all --version=0.36.4",
"postinstall": "npm run rebuild-sqlite3",
"rebuild-sqlite3": "cd node_modules/sqlite3 && npm run prepublish && node-gyp configure --module_name=node_sqlite3 --module_path=../lib/binding/node-v47-darwin-x64 && node-gyp rebuild --target=0.36.4 --arch=x64 --target_platform=darwin --dist-url=https://atom.io/download/atom-shell --module_name=node_sqlite3 --module_path=../lib/binding/node-v47-darwin-x64",
"rebuild-sqlite3-win": "cd node_modules/sqlite3 && npm run prepublish && node-gyp configure --module_name=node_sqlite3 --module_path=../lib/binding/node-v47-win32-x64 && node-gyp node-gyp rebuild --target=0.36.0 --arch=x64 --target_platform=win32 --dist-url=https://atom.io/download/atom-shell --module_name=node_sqlite3 --module_path=../lib/binding/node-v47-win32-x64"
},
"author": "Ben Bytheway",
"contributors": [],
"license": "MIT"
}