-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 3.03 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "dataasap",
"version": "1.0.4",
"description": "Tool for easily deidentifying healthcare transactions.",
"main": "init.js",
"author": "Dave Cheli <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/dcheli/dataASAP.git"
},
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.26.0",
"electron-context-menu": "^2.0.1",
"fast-xml-parser": "^3.17.4",
"he": "^1.2.0",
"lodash": "^4.17.19",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^5.1.2",
"react-router-dom": "^4.3.1",
"redux": "^4.0.5",
"semantic-ui-react": "^0.84.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"browser-sync": "^2.26.7",
"electron": "^9.4.0",
"electron-builder": "^22.0.0",
"electron-devtools-installer": "^2.2.4",
"electron-mocha": "^8.2.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-react": "^7.20.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^2.7.1"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"dev": "npm run private:compile -- --source-maps true && run-p -r private:watch private:serve",
"test": "electron-mocha --renderer -R spec --require babel-core/register test/**/*.spec.js",
"lint": "eslint --no-ignore scripts app test *.js",
"format": "npm run private:format -- --write",
"check-format": "npm run private:format -- --list-different",
"pack": "run-s private:clean private:compile private:build:all",
"pack:mac": "run-s private:clean private:compile private:build:mac",
"pack:win": "run-s private:clean private:compile private:build:win",
"pack:linux:rpm": "run-s private:clean private:compile private:build:linux-rpm",
"pack:linux:deb": "run-s private:clean private:compile private:build:linux-deb",
"private:build:all": "electron-builder -mwl",
"private:build:mac": "electron-builder --mac",
"private:build:win": "electron-builder --win",
"private:build:linux-rpm": "electron-builder --linux rpm",
"private:build:linux-deb": "electron-builder --linux deb",
"private:watch": "npm run private:compile -- --source-maps true --watch --skip-initial-build",
"private:serve": "babel-node scripts/serve.js",
"private:compile": "babel app/ --copy-files --out-dir build",
"private:clean": "rimraf build",
"private:format": "prettier \"scripts/*.js\" \"app/**/*.js\" \"test/**/*.js\""
},
"bugs": {
"url": "https://github.com/dcheli/dataASAP/issues"
},
"homepage": "https://github.com/dcheli/",
"keywords": [
"HIPAA",
"deidentify",
"PHI",
"NCPDP",
"X12",
"HL7",
"healthcare",
"EDI"
]
}