-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "redux-filtered-pagination",
"version": "1.0.4",
"description": "Simple module based on redux/redux-saga which supports call to paginated api, and filter feature",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/example/example.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiendv89/redux-filtered-pagination.git"
},
"keywords": [
"pagination"
],
"author": "Dinh Van Tien <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiendv89/redux-filtered-pagination/issues"
},
"homepage": "https://github.com/tiendv89/redux-filtered-pagination#readme",
"dependencies": {
"redux": "^3.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"rimraf": "^2.6.2"
}
}