-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.26 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": "d3-inertia",
"version": "0.4.0",
"description": "Inertia Dragging",
"keywords": [
"d3",
"d3-module",
"d3-drag",
"d3-geo",
"inertia"
],
"license": "MIT",
"main": "dist/d3-inertia.js",
"unpkg": "dist/d3-inertia.min.js",
"jsdelivr": "dist/d3-inertia.min.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"homepage": "https://github.com/Fil/d3-inertia",
"repository": {
"type": "git",
"url": "https://github.com/Fil/d3-inertia.git"
},
"author": {
"name": "Philippe Riviere",
"url": "https://github.com/Fil"
},
"contributors": [
{
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike/"
},
{
"name": "Widi Harsojo",
"url": "https://github.com/earthjs/earthjs"
}
],
"scripts": {
"pretest": "rollup -c",
"test": "tape 'test/**/*-test.js' && eslint src",
"prepublishOnly": "rm -rf dist && yarn test",
"postpublish": "zip -j dist/d3-inertia.zip -- LICENSE.txt README.md dist/d3-inertia.js dist/d3-inertia.min.js"
},
"dependencies": {
"d3-drag": "2",
"d3-selection": "2",
"d3-timer": "2",
"versor": "^0.1"
},
"devDependencies": {
"eslint": "6",
"rollup": "2",
"rollup-plugin-terser": "7",
"tape": "4"
}
}