-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.23 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
{
"name": "safety-histogram",
"description": "Histogram showing distribution of lab measures, vital signs and other related measures in clinical trials.",
"version": "2.5.0",
"author": "Rho, Inc.",
"license": "MIT",
"homepage": "https://github.com/rhoinc/safety-histogram#readme",
"module": "./src/index.js",
"main": "./safetyHistogram.js",
"keywords": [
"labs",
"vitals",
"ecg",
"bds",
"histogram",
"data",
"visualization",
"safety",
"explorer"
],
"dependencies": {
"d3": "^3",
"webcharts": "^1.11.6"
},
"scripts": {
"build": "npm audit fix && npm run bundle && npm run format && npm run build-wiki && npm run check-settings-schema",
"build-wiki": "npm run build-configuration-wiki && npm run build-data-guidelines-wiki",
"build-configuration-wiki": "node ./scripts/build-configuration-wiki.js",
"build-data-guidelines-wiki": "node ./scripts/build-data-guidelines-wiki.js",
"bundle": "rollup -c",
"check-settings-schema": "node ./scripts/check-settings-schema.js",
"format": "npm run format-src && npm run format-bundle",
"format-src": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./src/**/!(*styles).js\"",
"format-bundle": "prettier --print-width=100 --tab-width=4 --single-quote --write ./safetyHistogram.js",
"test": "node ./test/shapiro-wilk-normality-test/generate-results.js && node ./test/kolmogorov-smirnov-two-sample-test/generate-results.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"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.7.0",
"csv-parse": "^4.8.2",
"csv-writer": "^1.5.0",
"node-fetch": "^2.6.0",
"prettier": "^1.19.1",
"rollup": "^1.27.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-json": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/RhoInc/safety-histogram.git"
},
"bugs": {
"url": "https://github.com/RhoInc/safety-histogram/issues"
},
"optionalDependencies": {
"jerzy": "^0.2.1"
}
}