forked from DataASAP/dataASAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (92 loc) · 3.28 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
85
86
87
88
89
90
91
92
93
{
"name": "dataasap",
"version": "1.0.0",
"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": "^0.10.0",
"fast-xml-parser": "^3.12.5",
"he": "^1.2.0",
"history": "^4.6.3",
"prop-types": "^15.5.10",
"react": "^16.5.2",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.8",
"redux": "^4.0.1",
"redux-actions": "^2.2.1",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.2.0",
"semantic-ui-react": "^0.84.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.2.1",
"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.23.6",
"chai": "^4.1.0",
"electron": "^4.0.0",
"electron-builder": "^20.38.4",
"electron-devtools-installer": "^2.2.4",
"electron-mocha": "^6.0.1",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-react": "^7.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.13.7",
"redux-mock-store": "^1.2.2",
"rimraf": "^2.5.4"
},
"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"
]
}