-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.92 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@d3ts/us-map",
"version": "0.5.0",
"description": "Composable tooling for d3-based US Maps.",
"keywords": [
"d3",
"d3ts",
"maps",
"cartography",
"usa"
],
"homepage": "https://github.com/bratter/us-map#readme",
"bugs": "https://github.com/bratter/us-map/issues",
"license": "MIT",
"author": {
"name": "Brendan Ratter"
},
"files": [
"dist/**/*.*"
],
"main": "dist/d3ts-us-map.min.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bratter/us-map.git"
},
"scripts": {
"build": "rm -rf ./dist && rollup -c",
"test": "jest --watch",
"test:once": "jest && eslint ./src",
"prepublishOnly": "yarn build && yarn test:once"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
}
},
"peerDependencies": {
"d3-geo": "^2.0.1",
"d3-scale": "^3.2.1",
"d3-selection": "^2.0.0",
"d3-zoom": "^2.0.0",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.1",
"@types/d3-geo": "^2.0.0",
"@types/d3-scale": "^2.2.0",
"@types/d3-selection": "^2.0.0",
"@types/d3-zoom": "^2.0.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.12",
"@types/topojson-client": "^3.0.0",
"@types/topojson-specification": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"d3-geo": "^2.0.1",
"d3-scale": "^3.2.1",
"d3-selection": "^2.0.0",
"d3-zoom": "^2.0.0",
"eslint": "^7.2.0",
"eslint-plugin-jest": "^23.13.2",
"jest": "^26.0.1",
"rollup": "^2.15.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^6.1.0",
"topojson-client": "^3.1.0",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}