This repository was archived by the owner on Jun 11, 2020. It is now read-only.
forked from districtr/districtr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "districtr",
"version": "0.0.1",
"description": "A tool for drawing districting plans",
"private": true,
"scripts": {
"test": "mocha test --require @babel/register",
"test-ci": "mocha test --require @babel/register --reporter mocha-junit-reporter",
"build": "gulp build",
"develop": "gulp develop",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gerrymandr/districtr.git"
},
"keywords": [
"gis",
"voting-rights",
"redistricting"
],
"author": "Metric Geometry and Gerrymandering Group",
"license": "MIT",
"bugs": {
"url": "https://github.com/gerrymandr/districtr/issues"
},
"homepage": "https://github.com/gerrymandr/districtr#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"browser-sync": "^2.26.3",
"chai": "^4.2.0",
"eslint": "^5.15.3",
"gulp": "^4.0.0",
"gulp-sass": "^4.0.2",
"mocha": "^6.0.2",
"mocha-junit-reporter": "^1.18.0",
"rollup": "^1.4.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-terser": "^4.0.4",
"sass": "^1.17.2",
"sinon": "^7.2.5"
},
"dependencies": {
"d3-geo": "^1.11.3",
"d3-scale-chromatic": "^1.3.3",
"d3-selection": "^1.4.0",
"d3-transition": "^1.2.0",
"lit-html": "^1.0.0",
"mapbox-gl": "^0.53.1"
}
}