-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 851 Bytes
/
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
{
"name": "d3-clone",
"version": "1.0.9",
"description": "D3js plugin for clone nodes from selections.",
"keywords": [
"d3",
"d3-module",
"d3-clone",
"d3-cloning",
"clone",
"cloning"
],
"license": "BSD-3-Clause",
"main": "build/d3-clone.js",
"jsnext:main": "index",
"homepage": "https://github.com/jkutianski/d3-clone.git",
"repository": {
"type": "git",
"url": "https://github.com/jkutianski/d3-clone"
},
"scripts": {
"pretest": "node ./scripts/mkbuild.js && rollup -c ./rollup.config.js",
"test": "tape test/**/*-test.js",
"prepublish": "npm run test && uglifyjs build/d3-clone.js -c -m -o build/d3-clone.min.js"
},
"devDependencies": {
"d3-selection": ">=1.3.x",
"jsdom": ">=16.5.2",
"rollup": ">=2.28.1",
"tape": ">=4.11.0",
"uglify-js": ">=3.10.4"
}
}