-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.1 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
{
"name": "pagination-generator-js",
"version": "1.0.0",
"description": "Generates pagination based on 2 params -> total number of elements and number of elements per page",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"start": "babel-node --presets es2015 src/index.js",
"build": "webpack --config webpack.config.babel.js",
"prepublish": "npm run build"
},
"homepage": "https://github.com/zarkoselak/pagination-generator-js/blob/master/README.md",
"repository": {
"url": "https://github.com/zarkoselak/pagination-generator-js",
"type": "git"
},
"bugs": {
"url": "https://github.com/zarkoselak/pagination-generator-js/issues"
},
"keywords": [
"pagination"
],
"author": "Zarko Selak <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"jest": "^18.1.0",
"webpack": "^2.2.1"
}
}