-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.63 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
{
"name": "viz-library",
"version": "2.0.0",
"description": "Examples of statistical graphics created at Rho",
"main": "./index.html",
"module": "./src/index.js",
"scripts": {
"build": "npm audit fix && npm run scrape-examples && npm run take-new-screenshots && npm run last-update && npm run build-web && npm run format",
"build-web": "npm run bundle && npm run format",
"bundle": "rollup -c ./scripts/rollup.config.js",
"format": "prettier --write \"./scripts/**/*.js\" && prettier --write \"./src/**/*.js\" && prettier --write ./build/vizLibrary.js",
"bot-update": "npm run scrape-examples $GITHUB_TOKEN && npm run take-new-screenshots && npm run last-update",
"scrape-examples": "node ./scripts/scrapeExamples",
"take-new-screenshots": "node ./scripts/takeScreenshots",
"overwrite-screenshots": "node ./scripts/takeScreenshots -o",
"last-update": "node ./scripts/lastUpdate",
"watch": "rollup -c ./scripts/rollup.config.js -w"
},
"author": "Rho, Inc.",
"license": "MIT",
"dependencies": {
"d3": "^3.5.14"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"base-64": "^0.1.0",
"capture-website": "^0.3.2",
"csvtojson": "^1.1.12",
"jimp": "^0.2.27",
"jsdom": "^11.12.0",
"node-fetch": "^2.6.0",
"ping": "^0.2.2",
"prettier": "^1.18.2",
"read": "^1.0.7",
"rollup": "^0.50.1",
"rollup-plugin-babel": "^3.0.7",
"url-exists": "^1.0.3",
"valid-url": "^1.0.9"
},
"repository": {
"type": "git",
"url": "https://github.com/rhoinc/viz-library.git"
}
}