-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "d3-tube-map",
"version": "1.5.0",
"description": "Draw tube maps in the style of the London Underground",
"keywords": [
"d3",
"d3-module",
"tube",
"map",
"visualization"
],
"homepage": "https://github.com/johnwalley/d3-tube-map/",
"license": "BSD-3-Clause",
"author": {
"name": "John Walley",
"url": "http://www.walley.org.uk/"
},
"main": "dist/d3-tube-map.js",
"unpkg": "dist/d3-tube.min.js",
"jsdelivr": "dist/d3-tube.min.js",
"module": "src/index.js",
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/johnwalley/d3-tube-map.git"
},
"scripts": {
"pretest": "rimraf dist && mkdir dist && rollup -c",
"test": "tape 'test/**/*-test.js' && eslint src",
"prepublishOnly": "npm run test",
"postpublish": "zip -j dist/d3-tube-map.zip -- LICENSE README.md dist/d3-tube-map.js dist/d3-tube-map.min.js"
},
"dependencies": {
"d3": "5 - 6"
},
"sideEffects": false,
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "4.2.1",
"js-beautify": "^1.11.0",
"jsdom": "16.7.0",
"prettier": "2.8.3",
"rimraf": "^3.0.2",
"rollup": "2.79.1",
"rollup-plugin-terser": "7",
"tape": "5.6.3"
}
}