-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.34 KB
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
{
"name": "d3-redux",
"version": "0.0.6",
"description": "D3.js bindings for Redux",
"keywords": [
"d3",
"d3-module",
"redux"
],
"license": "MIT",
"main": "build/d3-redux.js",
"jsnext:main": "index",
"homepage": "https://github.com/couchand/d3-redux",
"repository": {
"type": "git",
"url": "https://github.com/couchand/d3-redux.git"
},
"scripts": {
"clean": "rm -rf build",
"prerollup": "npm run clean && mkdir build",
"rollup": "rollup -c",
"minify": "uglifyjs build/d3-redux.js -c -m -o build/d3-redux.min.js",
"format": "prettier --write index.js src/**/*.js test/**/*.js",
"lint": "prettier --list-different index.js src/**/*.js test/**/*.js",
"pretest": "npm run lint && rollup -c rollup.test.js",
"test": "nyc tape 'test/**/*-test.js'",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run test && npm run rollup && npm run minify",
"postpublish": "zip -j build/d3-redux.zip -- LICENSE README.md build/d3-redux.js build/d3-redux.min.js"
},
"devDependencies": {
"coveralls": "^3.0.0",
"d3-transition": "^1.1.0",
"jsdom": "11",
"nyc": "^11.3.0",
"prettier": "1.8.1",
"rollup": "0.50",
"rollup-plugin-istanbul": "^1.1.0",
"tape": "4",
"uglify-js": "2.6"
},
"dependencies": {
"d3-selection": "^1.1.0"
}
}