forked from GPII/gpii-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.37 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "gpii-app",
"version": "1.0.1",
"description": "Electron application and libraries to run the GPII as a native user space application on the desktop",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gpii/gpii-app.git"
},
"license": "BSD-3-Clause",
"dependencies": {
"electron": "3.0.2",
"electron-edge-js": "8.3.8",
"electron-localshortcut": "3.1.0",
"infusion": "3.0.0-dev.20190328T144119Z.ec44dbfab",
"nan": "2.10.0",
"node-jqunit": "1.1.8",
"request": "2.88.0",
"winstrap": "0.5.12",
"ws": "6.1.2",
"gpii-express": "1.0.15"
},
"devDependencies": {
"electron-packager": "8.5.1",
"eslint-config-fluid": "1.3.0",
"gpii-express": "1.0.15",
"gpii-grunt-lint-all": "1.0.5",
"gpii-testem": "2.1.11-dev.20191021T135156Z.56c646b.GPII-4156",
"graceful-fs": "4.1.11",
"grunt": "1.0.3",
"grunt-shell": "2.1.0",
"mkdirp": "0.5.1",
"nyc": "13.0.1",
"rimraf": "2.6.2",
"shelljs": "0.8.2"
},
"optionalDependencies": {
"gpii-windows": "0.3.0-dev.20191204T181313Z.b920f98.GPII-4253"
},
"scripts": {
"start": "set GPII_TEST_COUCH_USE_EXTERNAL=TRUE && electron .",
"dev": "set GPII_TEST_COUCH_USE_EXTERNAL=TRUE && electron . ./configs app.dev",
"build": "electron ./scripts/compileMessageBundles.js && .\\trayButton\\build.cmd",
"postinstall": "npm run build",
"pretest": "npm run pretest:clean && npm run build && npm run pretest:instrument",
"pretest:clean": "node node_modules/rimraf/bin.js coverage instrumented reports build && node ./node_modules/mkdirp/bin/cmd.js coverage instrumented reports",
"pretest:instrument": "node tests/lib/instrumentSource.js",
"test": "npm run test:psp && npm run test:gpiiWindows",
"test:psp": "set GPII_TEST_COUCH_USE_EXTERNAL=TRUE && electron ./instrumented/tests.js",
"test:gpiiWindows": "set GPII_TEST_COUCH_USE_EXTERNAL=TRUE && electron testsGpiiWindows.js",
"posttest": "node node_modules/nyc/bin/nyc.js report --temp-directory coverage",
"test:psp:noCoverage": "set GPII_TEST_COUCH_USE_EXTERNAL=TRUE && electron tests.js",
"test:noCoverage": "npm run build && npm run test:psp:noCoverage"
}
}