-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 958 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 958 Bytes
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
{
"name": "viviz",
"version": "0.2.0",
"main": "viviz-server.js",
"dependencies": {
"xml2js": "*",
"request": "2.9.203",
"express": "3.1.0",
"mkdirp": "*",
"readdirp": "*",
"cli-color": "*",
"yargs": "*"
},
"scripts": {
"start": "node viviz-server.js --port 8002",
"server": "nohup forever viviz-server.js --port 8002",
"build-inline-note": "Problems installing vulcanize with node 6.9.2 and npm 3.10.9, so removed from deps and devDeps.",
"build-inline": "vulcanize --exclude \"catalogs/\" --inline-scripts --inline-css index.htm | grep -v \"domain && iframe_doc.write\" > index-inline.htm;",
"build-darwin": "npm install --development; electron-packager . --platform=darwin --arch=x64 --overwrite --icon=css/Icons8-Windows-8-Data-Grid.icns",
"build-darwin-test": "node_modules/electron/dist/Electron.app/Contents/MacOS/Electron viviz-server"
},
"devDependencies": {
"electron": "^1.4.1",
"electron-packager": "*"
}
}