-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "hep-explorer",
"description": "Interactive Graphic for Exploring Hepatic Data in Clinical Trials",
"version": "1.4.2",
"author": "Interactive Safety Graphics Team",
"license": "MIT",
"homepage": "https://github.com/SafetyGraphics/hep-explorer#readme",
"module": "./src/index.js",
"main": "hepexplorer.js",
"keywords": [
"labs",
"vitals",
"data",
"visualization",
"safety",
"explorer",
"hapatoxicity"
],
"dependencies": {
"d3": "^3",
"webcharts": "^1.11.6"
},
"scripts": {
"build": "npm audit fix && npm run bundle && npm run format",
"bundle": "rollup -c",
"format": "npm run format-src && npm run format-build",
"format-src": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./src/**/*.js\"",
"format-build": "prettier --print-width=100 --tab-width=4 --single-quote --write hepexplorer.js",
"test": "start chrome ./test/index.html && start firefox ./test/index.html && start iexplore file://%CD%/test/index.html",
"watch": "rollup -c -w"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"prettier": "^1.18.2",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^3.0.7"
},
"repository": {
"type": "git",
"url": "https://github.com/SafetyGraphics/hep-explorer.git"
},
"bugs": {
"url": "https://github.com/SafetyGraphics/hep-explorer/issues"
}
}