-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.28 KB
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
67
68
{
"name": "mcode-extraction-ui",
"productName": "mCODE Extractor",
"version": "1.0.0",
"description": "An Electron-based desktop app for performing mCODE extraction.",
"author": {
"name": "MITRE"
},
"main": "electron/electron.js",
"scripts": {
"build": "npm run build:frontend && npm run dist",
"build:windows": "npm run build:frontend && npm run dist:windows",
"build:frontend": "cd ./react-app && npm run build",
"dist": "electron-builder -mw",
"dist:windows": "electron-builder -w",
"lint": "eslint \"./**/*.js\"",
"lint:fix": "eslint \"./**/*.js\" --fix",
"prettier": "prettier --check \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"start": "node ./start.js",
"start:windows": "npm-run-all -p start:frontend:windows start:electron",
"start:nonwindows": "npm-run-all -p start:frontend start:electron",
"start:electron": "wait-on tcp:3000 && electron-forge start",
"start:frontend": "cd ./react-app && BROWSER=none npm start",
"start:frontend:windows": "cd ./react-app && set BROWSER=none && npm run start:windows"
},
"keywords": [],
"contributors": [
"Julia Afeltra <jafeltra@mitre.org>",
"Julian Carter <jacarter@mitre.org>",
"Matthew Gramigna <mgramigna@mitre.org>",
"Dylan Mendelowitz <dmendelowitz@mitre.org>",
"Dylan Phelan <dphelan@mitre.org>",
"Seneca Anderson <sanderson@mitre.org>"
],
"license": "Apache-2.0",
"build": {
"appId": "mcode.steam",
"mac": {
"icon": "electron/static/icon.png",
"category": "public.app-category.utilities",
"identity": null
},
"win": {
"target": "portable",
"icon": "electron/static/icon.png",
"signAndEditExecutable": false
}
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"mcode-extraction-framework": "github:mcode/mcode-extraction-framework",
"strip-ansi": "^6.0.0",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.54",
"electron": "^12.0.6",
"electron-builder": "^22.14.5",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"wait-on": "^5.3.0"
}
}