-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "@vivid-planet/redux-paging",
"version": "1.1.0",
"description": "A higher order component decorator for paging using Redux and React",
"main": "./lib/index.js",
"scripts": {
"scss": "node-sass --output-style expanded --recursive scss/default.scss dist/redux-paging.css",
"build": "babel src --presets=es2015,react --out-dir lib",
"clean": "rm -rf lib && rm -rf dist",
"prepublish": "npm run clean && npm run build && npm run scss"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vivid-planet/redux-paging.git"
},
"peerDependencies": {
"react": "^15.6.1",
"prop-types": "^15.6.0",
"react-redux": "^5.0.6",
"redux-act": "^1.5.0",
"immutable": "^3.8.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"node-sass": "^4.6.0"
},
"keywords": [
"react",
"reactjs",
"react-redux",
"redux",
"redux-paging",
"paging",
"flux",
"immutable"
],
"author": "Alexander Kaufmann <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/vivid-planet/redux-paging/issues"
},
"homepage": "https://github.com/vivid-planet/redux-paging#readme"
}