-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.2 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
{
"name": "d3-loom",
"version": "1.0.2",
"description": "a d3 plugin to create a loom chart layout",
"keywords": [
"d3",
"d3-module",
"loom",
"layout"
],
"license": "MIT",
"main": "build/d3-loom.js",
"jsnext:main": "index",
"module": "index",
"homepage": "https://github.com/nbremer/d3-loom",
"repository": {
"type": "git",
"url": "https://github.com/nbremer/d3-loom.git"
},
"scripts": {
"lint": "eslint src",
"pretest": "npm run lint && rm -rf build && mkdir build && rollup -c",
"build": "npm run pretest",
"prepack": "uglifyjs build/d3-loom.js -c -m -o build/d3-loom.min.js",
"postpublish": "git push; git push --tags"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"jsdom": "^9.11.0",
"rollup": "0.41",
"rollup-plugin-babel": "^2.7.1",
"uglify-js": "2"
},
"dependencies": {
"d3-array": "^1.2.0",
"d3-collection": "^1.0.4",
"d3-interpolate": "^1.1.5",
"d3-path": "^1.0.5"
}
}