This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.12 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
{
"name": "@chartiq/secure-electron-adapter",
"productName": "secure-electron-adapter",
"description": "Adapter for running secure applications on electron",
"version": "0.1.0",
"main": "./dist/devIndex.js",
"files": [
"dist/",
"!dist/*.map",
"exports.js",
"deploy/configs"
],
"scripts": {
"lint:quiet": "eslint --quiet ./src",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"dev": "set NODE_ENV=development&& gulp buildSEA",
"prod": "set NODE_ENV=production&& gulp buildSEA",
"test": "electron-mocha src/**/*.spec.js --timeout 5000",
"build": "webpack --env.prod --config ./build/webpack.exports.js&& webpack --env.prod --config ./build/webpack.index.js&& webpack --env.prod --config ./build/webpack.renderer.js",
"build:prod": "webpack --mode=production --config ./build/webpack.exports.js&& webpack --mode=production --config ./build/webpack.index.js&& webpack --mode=production --config ./build/webpack.renderer.js",
"validate-license": "node-license-validator -v -p . --allow-licenses MIT Apache-2.0 BSD BSD-3-Clause ISC WTFPL BSD-2-Clause Unlicense MIT/X11 --allow-packages buffers cycle roarr"
},
"build": {
"appId": "sea"
},
"author": "ChartIQ",
"license": "Apache-2.0",
"dependencies": {
"electron": "8.1.1",
"electron-process-manager": "1.0.0",
"electron-rebuild": "1.10.1",
"node-notifier": "6.0.0",
"superagent": "4.1.0",
"systeminformation": "3.45.10"
},
"devDependencies": {
"async": "2.6.1",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"chai": "4.2.0",
"death": "1.1.0",
"deepmerge": "1.3.2",
"electron-ipc-mock": "0.0.3",
"electron-mocha": "^8.2.1",
"eslint": "5.9.0",
"fast-safe-stringify": "2.0.6",
"gulp": "4.0.0",
"lodash.get": "4.4.2",
"mkdirp": "^1.0.3",
"node-license-validator": "^1.3.0",
"proxyquire": "2.1.1",
"sinon": "7.2.7",
"ts-loader": "6.0.4",
"typescript": "3.2.4",
"uuid": "3.3.2",
"webpack": "4.29.6",
"webpack-cli": "3.3.11",
"webpack-stream": "5.2.1",
"winston": "3.2.1",
"winston-daily-rotate-file": "3.8.0"
}
}