-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.56 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "react-next-paging",
"jest": {
"verbose": true
},
"version": "0.0.0-semantically-released",
"description": "ReactJS component for easy pagination",
"main": "dist/react-next-paging.js",
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --mode=development --output-filename index.umd.js",
"build:umd.min": "webpack --mode=production --output-filename index.umd.min.js",
"semantic-release": "semantic-release -b master --prepare && npm publish && semantic-release post",
"test": "jest",
"test:watch": "jest --watch",
"travis-deploy-once": "travis-deploy-once"
},
"keywords": [
"pagination",
"paging",
"react",
"reactjs",
"page",
"table",
"ul",
"row",
"column"
],
"author": "Rafael Mora <[email protected]>",
"license": "MIT",
"dependencies": {
"prop-types": "15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-function-bind",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-template-literals",
"@babel/plugin-transform-runtime",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-export-namespace-from"
]
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/titanve/react-next-paging.git"
},
"bugs": {
"url": "https://github.com/titanve/react-next-paging/issues"
},
"homepage": "https://github.com/titanve/react-next-paging#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/plugin-transform-template-literals": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.4",
"@octokit/rest": "16.16.3",
"@semantic-release/condition-travis": "7.1.4",
"@semantic-release/git": "7.0.8",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"commitizen": "3.0.7",
"cz-conventional-changelog": "2.1.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.10.0",
"ghooks": "2.0.4",
"jest": "24.1.0",
"npm-run-all": "4.1.5",
"path": "0.12.7",
"react-test-renderer": "16.8.3",
"regenerator-runtime": "^0.13.1",
"rimraf": "2.6.3",
"semantic-release": "^15.13.3",
"travis-deploy-once": "^5.0.11",
"webpack": "4.29.6",
"webpack-cli": "^3.2.3"
},
"config": {
"ghooks": {
"pre-commit": "yarn test"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"release": {
"verifyConditions": "@semantic-release/condition-travis",
"getLastRelease": "@semantic-release/last-release-git-tag"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}