-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·52 lines (52 loc) · 1.51 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
{
"name": "react-ultimate-pagination-bootstrap-4",
"version": "1.1.0",
"description": "React.js pagination component with Bootstrap 4 theme",
"main": "lib/react-ultimate-pagination-bootstrap-4.js",
"keywords": [
"react",
"react.js",
"component",
"react-component",
"pagination",
"paginator",
"pager",
"bootstrap"
],
"files": [
"dist",
"lib"
],
"scripts": {
"prebuild": "rm -rf dist lib",
"build": "npm-run-all --parallel build:*",
"build:main": "babel src -d lib",
"build:umd": "webpack --output-filename react-ultimate-pagination-bootstrap-4.js",
"build:umd.min": "webpack --output-filename react-ultimate-pagination-bootstrap-4.min.js -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ultimate-pagination/react-ultimate-pagination-bootstrap-4.git"
},
"author": "Dmytro Yarmak <[email protected]> (http://dmytroyarmak.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ultimate-pagination/react-ultimate-pagination-bootstrap-4/issues"
},
"homepage": "https://github.com/ultimate-pagination/react-ultimate-pagination-bootstrap-4#readme",
"dependencies": {
"react-ultimate-pagination": "1.1.0"
},
"peerDependencies": {
"bootstrap": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"npm-run-all": "^1.8.0",
"webpack": "^1.13.0"
}
}