-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.75 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
{
"name": "dashboard-charts",
"version": "1.0.0",
"description": "Clinical Dashboards",
"module": "./src/index.js",
"main": "./dashboardCharts.js",
"author": "Rho, Inc.",
"license": "MIT",
"dependencies": {
"d3": "~3",
"webcharts": "~1"
},
"scripts": {
"build": "npm audit fix && npm run bundle && npm run save-settings-schemas-as-json && npm run format && npm run build-test-pages && npm run build-wikis",
"build-wikis": "npm run build-configuration-wikis && npm run build-data-guidelines-wikis",
"build-configuration-wikis": "node ./scripts/build-configuration-wiki.js",
"build-data-guidelines-wikis": "node ./scripts/build-data-guidelines-wiki.js",
"build-test-pages": "node ./scripts/build-test-pages.js",
"bundle": "rollup -c",
"format": "npm run format-src && npm run format-bundle",
"format-src": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./src/**/*.js\"",
"format-bundle": "prettier --print-width=100 --tab-width=4 --single-quote --write ./dashboardCharts.js",
"save-settings-schemas-as-json": "node --experimental-modules ./scripts/save-settings-schemas-as-json.mjs",
"update-wiki": "git clone https://github.com/RhoInc/dashboard-charts.wiki && node ./scripts/update-wiki.js && cd dashboard-charts.wiki/ && git add -A && git commit -a -m 'rebuild wiki' && git push && cd .. && rm -rf dashboard-charts.wiki/",
"watch": "rollup -c -w"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"find": "^0.2.9",
"glob": "^7.1.3",
"prettier": "^1.7.4",
"request": "^2.88.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^4.0.0"
}
}