-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
66 lines (66 loc) · 2.64 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "electron-re",
"version": "1.2.8",
"description": "Electron Process Manager",
"main": "./lib/index",
"types": "./types/index.d.ts",
"scripts": {
"start": "cross-env NODE_ENV=prod electron index.js --inspect=5858",
"start:main": "cross-env NODE_ENV=dev electron index.js --inspect=5858",
"start:main:no-sandbox": "cross-env NODE_ENV=dev electron index.js --inspect=5858 --disable-gpu-sandbox",
"start:renderer": "cd src/ui && npm start",
"watch": "onchange 'src/*.js' 'src/libs/*/*/*.js' 'src/libs/*/*.js' 'src/libs/*.js' 'src/index.js' 'src/conf/*' -- npm run build:libs",
"build:libs": "node ./build.js build:libs",
"build:ui": "node ./build.js build:ui",
"build": "npm run build:libs && npm run build:ui",
"test": "cross-env NODE_ENV=test ./node_modules/electron-mocha/bin/electron-mocha index.test.js --inspect=5858",
"test:no-sandbox": "cross-env NODE_ENV=test ./node_modules/electron-mocha/bin/electron-mocha index.test.js --disable-gpu-sandbox",
"test:src": "cross-env NODE_ENV=test:src ./node_modules/electron-mocha/bin/electron-mocha index.test.js --inspect=5858",
"test:src:no-sandbox": "cross-env NODE_ENV=test:src ./node_modules/electron-mocha/bin/electron-mocha index.test.js --disable-gpu-sandbox",
"coverage": "nyc npm run test",
"coverage:no-sandbox": "nyc npm run test:no-sandbox",
"performance": "node ./performance/index.js",
"publish": "npm publish --registry=https://registry.npmjs.org"
},
"keywords": [
"electron",
"electron-re",
"electron-process-manager"
],
"author": "NoJsJa",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nojsja/electron-re"
},
"homepage": "https://github.com/nojsja/electron-re#readme",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@electron/remote": "^2.0.1",
"pidusage": "^2.0.21"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-proposal-function-sent": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.12.7",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.7",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"electron": "9.3.5",
"electron-mocha": "^9.3.2",
"istanbul": "^0.4.5",
"minimist": "^1.2.7",
"nyc": "^15.1.0",
"onchange": "^7.1.0",
"shx": "^0.3.3"
},
"peerDependencies": {
"electron": "^9.3.5"
}
}