-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.69 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
{
"name": "data-library",
"version": "1.5.1",
"description": "public-use datasets for clinical trial data visualizations",
"module": "./src/index.js",
"main": "index.js",
"scripts": {
"build": "npm audit fix && npm run make-all && npm run bundle && npm run format",
"bundle": "rollup -c",
"format": "npm run format-js && npm run format-bundle",
"format-js": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./src/**/*.js\"",
"format-bundle": "prettier --print-width=100 --tab-width=4 --single-quote --write ./index.js",
"make-all": "npm run make-data-files-json && npm run make-metadata-json && npm run make-main-index-html && npm run make-index-html",
"make-data-files-json": "node ./src/scripts/build-data-files-json.js",
"make-index-html": "node ./src/scripts/build-index-html.js",
"make-main-index-html": "node ./src/scripts/build-main-index-html.js",
"make-metadata-json": "node ./src/scripts/build-metadata-json.js",
"watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RhoInc/data-library.git"
},
"keywords": [
"clinical",
"trial",
"data"
],
"author": "Rho, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/RhoInc/data-library/issues"
},
"homepage": "https://github.com/RhoInc/data-library#readme",
"dependencies": {
"d3": "^3.5.17",
"webcharts": "^1.11.5",
"webcodebook": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"csvtojson": "^2.0.8",
"prettier": "^1.18.2",
"rollup": "^1.20.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^4.2.4"
}
}