-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"name": "study-overview",
"version": "0.4.0",
"description": "a high-level summary of study accrual and data cleaning metrics",
"module": "src/index.js",
"main": "studyOverview.js",
"scripts": {
"build": "npm audit fix && npm run bundle && npm run format",
"bundle": "rollup -c",
"format": "npm run format-src && npm run format-bundle",
"format-src": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./src/**/*.js\"",
"format-bundle": "prettier --print-width=100 --tab-width=4 --single-quote --write ./studyOverview.js",
"test-page": "start chrome ./test-page/index.html && start firefox ./test-page/index.html && start iexplore file://%CD%/test-page/index.html",
"watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RhoInc/study-overview.git"
},
"keywords": [
"study",
"overview",
"clinical",
"trials",
"accrual",
"data",
"cleaning"
],
"author": "Rho, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/RhoInc/study-overview/issues"
},
"homepage": "https://github.com/RhoInc/study-overview#readme",
"dependencies": {
"d3": "^3.5.17",
"js-xlsx": "^0.8.22",
"jspdf": "^1.5.3",
"jspdf-autotable": "^3.2.11",
"webcharts": "^1.11.6"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"chokidar": "^3.3.1",
"prettier": "^1.19.1",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3"
},
"optionalDependencies": {
"webcodebook": "^1.6.2"
}
}