forked from lucasmogari/react-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.72 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
{
"name": "@lucasmogari/react-pagination",
"version": "0.0.7",
"description": "Headless react hook for pagination",
"main": "index.js",
"module": "dist/react-pagination.mjs",
"author": "Lucas Mogari <[email protected]>",
"license": "MIT",
"repository": "lucasmogari/react-pagination",
"homepage": "https://react-pagination.vercel.app/",
"scripts": {
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "npm run test -- --watchAll",
"build": "rm -rf dist && NODE_ENV=production rollup -c",
"start": "rollup -c -w",
"release": "np"
},
"files": [
"dist"
],
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react-hooks": "^3.4.1",
"jest": "^26.4.0",
"np": "^6.4.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.25.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-visualizer": "^4.1.0"
},
"babel": {
"presets": [
[
"@babel/env",
{
"modules": false,
"loose": true
}
],
"@babel/react"
],
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}