-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.49 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
{
"name": "query-overview",
"version": "2.0.0",
"description": "Interactive bar chart for exploration of query data from clinical trials",
"module": "./src/index.js",
"main": "./build/queryOverview.js",
"author": "Rho, Inc.",
"license": "MIT",
"dependencies": {
"d3": "~3",
"webcharts": "~1"
},
"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 ./build/*.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": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"prettier": "^1.7.4",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^3.0.2"
}
}