forked from RhoInc/clinical-timelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.11 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
{
"name": "clinical-timelines",
"description": "A general purpose graphical timeline library",
"version": "1.5.2",
"author": "Rho, Inc.",
"license": "MIT",
"homepage": "https://github.com/RhoInc/clinical-timelines",
"main": "./build/clinicalTimelines.js",
"module": "./src/index.js",
"keywords": [
"clinical timelines",
"clinical trials",
"events over time",
"interactive",
"data visualization"
],
"dependencies": {
"d3": "^3",
"webcharts": "^1.10"
},
"scripts": {
"build": "npm audit fix && npm run bundle && npm run format && npm run build-md",
"build-md": "node ./scripts/configuration-markdown.js",
"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/**/!(*settings|*defineStyles|*defineLayout).js\"",
"format-build": "prettier --print-width=100 --tab-width=4 --single-quote --write build/clinicalTimelines.js",
"test": "npm run test-call && npm run test-init && npm run test-interactivity",
"test-call": "mocha --timeout 10000 --require babel-register --recursive ./test/call.js",
"test-init": "mocha --timeout 10000 --require babel-register --recursive ./test/init.js",
"test-interactivity": "mocha --timeout 10000 --require babel-register --recursive ./test/interactivity/viewChange.js",
"test-page": "start chrome ./test-page/index.html && start firefox ./test-page/index.html && start iexplore file://%CD%/test-page/index.html",
"unit-test": "mocha --timeout 10000 --require babel-register --recursive ./test/call.js",
"watch": "rollup -c -w"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"expect": "^22.0.3",
"jsdom": "^11.5.1",
"mocha": "^4.0.1",
"prettier": "^1.7.4",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^3.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/RhoInc/clinical-timelines.git"
},
"bugs": {
"url": "https://github.com/RhoInc/clinical-timelines/issues"
}
}