-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 KB
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
{
"name": "stripedcircle",
"version": "0.9.12",
"description": "Everything to draw nice striped circle symbols to show numerical proportions on maps or other visualisations",
"keywords": [
"pie chart",
"circle",
"stripe",
"proportion",
"visualisation"
],
"homepage": "https://github.com/jgaffuri/StripedCircle",
"author": "Julien Gaffuri",
"license": "EUPL-1.2",
"repository": {
"type": "git",
"url": "https://github.com/jgaffuri/StripedCircle.git"
},
"main": "build/stripedcircle.min.js",
"files": [
"build/stripedcircle.min.js"
],
"scripts": {
"start": "webpack --config webpack.config.dev.js",
"server": "webpack-dev-server --open --watch",
"build-prod": "webpack --config webpack.config.prod.js",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.12.1",
"d3-selection": "^3.0.0",
"publish": "^0.6.0",
"puppeteer": "^1.13.0",
"rbush": "^3.0.1",
"three": "^0.129.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"jest": "^26.6.1",
"jshint": "^2.12.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-livereload-plugin": "^2.3.0"
}
}