-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "rmc-pull-updown-to-refresh",
"version": "2.0.4",
"description": "react pull to refresh react component",
"main": "./disc/index.js",
"module": "./disc/index.esm.js",
"types": "./disc/index.d.ts",
"author": "eightfeet",
"license": "MIT",
"scripts": {
"build": "rm -rf disc && tsc --emitDeclarationOnly && rollup -c",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/eightfeet/rmc-pull-updown-to-refresh.git"
},
"bugs": {
"url": "https://github.com/eightfeet/rmc-pull-updown-to-refresh/issues"
},
"keywords": [
"react",
"pull to refresh",
"react-component"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.64.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.0.2"
},
"files": [
"/disc"
],
"dependencies": {
"typescript-plugin-css-modules": "^3.4.0"
}
}