-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.98 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
{
"name": "graphics",
"version": "1.0.3",
"description": "the Rho Graphics website",
"module": "./js/index.js",
"main": "index.js",
"scripts": {
"build": "npm audit fix && npm run get-all && npm run bundle && npm run format && npm run last-update",
"bundle": "rollup -c",
"test": "echo Testing in Travis. Whoo.",
"format": "npm run format-scripts && npm run format-js && npm run format-bundle",
"format-js": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./js/**/*.js\"",
"format-bundle": "prettier --print-width=100 --tab-width=4 --single-quote --write ./index.js",
"format-scripts": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./scripts/**/*.js\"",
"get-all-bot": "node ./scripts/getAll.js $GITHUB_TOKEN && npm run last-update",
"get-all": "node ./scripts/getAll.js",
"get-blog-posts": "node ./scripts/getBlogPosts.js",
"get-branches": "node ./scripts/getBranches.js",
"get-releases": "node ./scripts/getReleases.js",
"get-repos": "node ./scripts/getRepos.js",
"last-update": "node ./scripts/lastUpdate",
"test-page": "start chrome ./index.html && start firefox ./index.html && start iexplore file://%CD%/index.html",
"watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RhoInc/graphics.git"
},
"keywords": [
"graphics",
"rho",
"data",
"visualization"
],
"author": "Rho, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/RhoInc/graphics/issues"
},
"homepage": "https://github.com/RhoInc/graphics#readme",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"base-64": "^0.1.0",
"node-fetch": "^2.3.0",
"prettier": "^1.16.4",
"promise-polyfill": "^8.1.0",
"read": "^1.0.7",
"rollup": "^1.10.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.2.3",
"whatwg-fetch": "^3.0.0"
},
"dependencies": {
"d3": "^3.5.17"
}
}