-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "redux-svg",
"version": "0.1.6",
"description": "Pan and zoom SVG viewbox with redux",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"unpkg": "dist/redux-saga.min.js",
"directories": {
"example": "example"
},
"scripts": {
"prettier": "prettier-eslint --write --list-different \"@(src|test)/**/*.js\" \"example/src/**/*.js\"",
"fix": "eslint --fix \"@(src|test)/**/*.js\"",
"pretest": "npm run lint",
"test": "npm run travis",
"travis": "npm run build && npm run test:only",
"test:only": "npm run mocha test",
"test:all": "npm run test:only",
"lint": "eslint --ext js src test",
"prepublish": "npm run build && safe-publish-latest",
"clean": "rimraf dist es lib",
"prebuild": "npm run clean",
"build:umd:dev": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -i src/index.js -o dist/redux-svg.js",
"build:umd:prod": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -i src/index.js -o dist/redux-svg.min.js",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "npm run clean && run-p build:**",
"website:publish": "cp example/public/* docs/",
"cover:clean": "rimraf coverage",
"cover:run": "nyc --show-process-tree npm run --silent mocha test -- --reporter=dot",
"precoverage": "NODE_ENV=test npm run build",
"coverage": "npm run --quiet cover:clean && npm run --silent cover:run",
"mocha": "NODE_ENV=test mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reviz/redux-svg.git"
},
"keywords": [
"pan",
"zoom",
"center",
"svg",
"dataviz",
"d3-zoom",
"redux"
],
"author": "lutangar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reviz/redux-svg/issues"
},
"homepage": "https://github.com/reviz/redux-svg#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-airbnb": "^2.4.0",
"babel-register": "^6.24.1",
"chai": "^4.1.2",
"commonjs": "0.0.1",
"cross-env": "^5.0.5",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-loader": "^1.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.2.0",
"mocha": "^3.5.0",
"mock-env": "^0.2.0",
"npm-run-all": "^4.1.1",
"nyc": "^10.3.2",
"prettier": "^1.5.2",
"prettier-eslint-cli": "^4.1.1",
"rimraf": "^2.6.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"safe-publish-latest": "^1.1.1"
},
"dependencies": {
"v2d": "^1.3.8"
}
}