-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "d3-gridding",
"version": "0.2.0",
"description": "Grids for rapid d3 charts mock-ups",
"keywords": [
"d3",
"d3-module",
"grid",
"visualization"
],
"homepage": "https://github.com/romsson/d3-gridding",
"license": "BSD-3-Clause",
"author": {
"name": "Romain Vuillemot",
"url": "http://romain.vuillemot.net/"
},
"main": "dist/d3-gridding.js",
"unpkg": "dist/d3-gridding.min.js",
"jsdelivr": "dist/d3-gridding.min.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/romsson/d3-gridding.git"
},
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"scripts": {
"pretest": "rollup -c",
"test": "tape -r esm 'test/**/*-test.js' && eslint src",
"prepublish": "rm -rf dist && yarn test",
"postpublish": "zip -j dist/d3-gridding.zip -- LICENSE README.md dist/d3-gridding.js dist/d3-gridding.min.js"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-plugin-es5": "1",
"esm": "3",
"package-preamble": "0.1",
"rollup": "1",
"rollup-plugin-terser": "5",
"tape": "4",
"uglify-js": "3",
"watch": "1"
},
"dependencies": {
"d3": "4 - 5",
"d3-array": "1 - 2",
"d3-hierarchy": "^1.1.4",
"d3-scale": "2.1.2",
"d3-shape": "^1.0.2"
}
}