-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1001 Bytes
/
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
{
"name": "ahcd",
"version": "0.0.7",
"description": "Apple Health Care Data convert xml to csv",
"main": "dist/ahcd.js",
"bin": "bin/ahcd.js",
"repository": {
"type": "git",
"url": "git+https://github.com/freddiefujiwara/ahcd.git"
},
"scripts": {
"test": "npx jest",
"docs": "npx jsdoc2md -c jsdoc.conf.json src/*.js > docs/DOCS.md",
"build": "npx webpack"
},
"keywords": [
"Apple",
"Healthcare",
"xml",
"csv"
],
"author": {
"name": "Fumikazu Fujiwara",
"email": "[email protected]",
"url": "http://freddiefujiwara.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/freddiefujiwara/ahcd/issues"
},
"homepage": "https://github.com/freddiefujiwara/ahcd#readme",
"dependencies": {
"csv-writer": "^1.6.0",
"elementtree": "^0.1.7",
"minimist": "^1.2.5"
},
"devDependencies": {
"jest": "^26.4.2",
"jsdoc-to-markdown": "^6.0.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}