-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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": "d3-scale-break",
"version": "0.1.11",
"description": "Domain/range scale breaking for handling highly skewed data in d3",
"main": "dist/d3-scale-break.min.js",
"module": "dist/d3-scale-break.esm.js",
"unpkg": "dist/d3-scale-break.min.js",
"jsdelivr": "dist/d3-scale-break.min.js",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src",
"build": "yarn rollup -c",
"test": "babel-tape-runner 'src/**/spec.js' | colortape",
"precommit": "yarn lint && yarn test",
"prepublishOnly": "yarn clean && yarn lint && yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukewhyte/d3-scale-break.git"
},
"keywords": [
"d3",
"scale",
"break",
"svg",
"graphics",
"data",
"visualization"
],
"author": "Luke Whyte",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukewhyte/d3-scale-break/issues"
},
"homepage": "https://github.com/lukewhyte/d3-scale-break#readme",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-external-helpers": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@rollup/plugin-node-resolve": "^6.0.0",
"babel-eslint": "^10.0.3",
"babel-tape-runner": "^3.0.0",
"colortape": "^0.1.2",
"d3": "^5.15.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-tape": "^1.1.0",
"jsdom": "^15.2.1",
"rimraf": "^3.0.0",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.3",
"tape": "^4.12.1"
},
"dependencies": {
"d3-array": "^2.4.0",
"d3-axis": "^1.0.12",
"d3-interpolate": "^1.4.0",
"d3-scale": "^3.2.1"
}
}