-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 3.53 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
{
"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.13.1",
"react-dom": "^16.13.1"
},
"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.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/plugin-transform-template-literals": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.6",
"@semantic-release/condition-travis": "7.1.4",
"@semantic-release/git": "9.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"ghooks": "2.0.4",
"jest": "26.0.1",
"npm-run-all": "4.1.5",
"path": "0.12.7",
"react-test-renderer": "16.13.1",
"regenerator-runtime": "^0.13.5",
"rimraf": "3.0.2",
"semantic-release": "^17.0.7",
"travis-deploy-once": "^5.0.11",
"webpack": "4.43.0",
"webpack-cli": "^3.3.11"
},
"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"
}
}