-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
64 lines (64 loc) · 1.73 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
59
60
61
62
63
64
{
"name": "@carbonplan/maps",
"version": "3.4.0",
"description": "interactive data-driven web maps",
"main": "dst/index.js",
"module": "dst/index.esm.js",
"scripts": {
"build": "rimraf dst && microbundle src/index.js -o dst/index.js --no-compress --jsx React.createElement -f modern,es,cjs --jsxFragment React.Fragment",
"watch": "microbundle watch src/index.js -o dst/index.js --no-compress --jsx React.createElement -f modern,es,cjs --jsxFragment React.Fragment",
"test": "NODE_ENV=test jest --watch",
"test:ci": "NODE_ENV=test jest --ci --reporters='default'",
"format": "prettier --write 'src/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carbonplan/maps.git"
},
"keywords": [
"carbonplan",
"webgl",
"mapbox",
"regl",
"mapping"
],
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/carbonplan/maps/issues"
},
"files": [
"dst",
"mapbox.css"
],
"prettier": "@carbonplan/prettier",
"homepage": "https://github.com/carbonplan/maps#readme",
"dependencies": {
"@turf/turf": "^6.5.0",
"d3-array": "^2.12.1",
"d3-axis": "^2.1.0",
"d3-geo": "^2.0.2",
"d3-scale": "^2.2.2",
"d3-selection": "^2.0.0",
"glsl-geo-projection": "^1.0.1",
"mapbox-gl": "^1.13.1",
"ndarray": "^1.0.19",
"regl": "^2.1.0",
"uuid": "^8.3.2",
"xhr-request": "^1.1.0",
"zarr-js": "^3.3.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@carbonplan/prettier": "^1.2.0",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"rimraf": "3.0.2"
}
}