-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
58
{
"name": "d3-parliament-chart",
"version": "0.0.7",
"description": "parliament / congress / legislature charts simplified",
"main": "build/d3-parliament-chart.js",
"files": [
"build",
"README.md"
],
"scripts": {
"dev": "rollup -c rollup.dev.config.js -w",
"clean": "rimraf build",
"lint": "eslint .",
"test": "jest",
"build": "npm run clean && rollup -c",
"prepublishOnly": "npm run build && uglifyjs build/d3-parliament-chart.js -c -m -o build/d3-parliament-chart.min.js",
"postpublish": "zip -j build/d3-parliament-chart.zip -- LICENSE README.md build/d3-parliament-chart.js build/d3-parliament-chart.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dkaoster/d3-parliament-chart.git"
},
"author": "Daniel Kao",
"license": "MIT",
"keywords": [
"d3",
"d3-module",
"parliament",
"legislature",
"congress",
"chart"
],
"bugs": {
"url": "https://github.com/dkaoster/d3-parliament-chart/issues"
},
"homepage": "https://github.com/dkaoster/d3-parliament-chart#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"babel-jest": "^29.7.0",
"d3": "^7.4.4",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-svelte3": "^3.0.0",
"jest": "^29.7.0",
"rollup": "^2.36.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"sirv-cli": "^1.0.10",
"svelte": "^4.2.19",
"uglify-js": "^3.15.4"
}
}