forked from thmsgbrt/react-simple-pull-to-refresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.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
{
"name": "react-simple-pull-to-refresh",
"version": "1.3.3",
"description": "A Simple Pull To Refresh Component for React Application",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"scripts": {
"build": "rollup -c && cd playground && npm run build && cd ../ && ncp ./playground/build ./docs",
"build-watch": "rollup -c -w",
"dev": "npm-run-all --parallel build-watch start-playground",
"i-all": "npm i && cd playground && npm i",
"start-playground": "cd playground && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thmsgbrt/react-simple-pull-to-refresh.git"
},
"keywords": [
"react",
"pull to refresh",
"js",
"mobile"
],
"author": "Guibert Thomas",
"license": "MIT",
"bugs": {
"url": "https://github.com/thmsgbrt/react-simple-pull-to-refresh/issues"
},
"homepage": "https://github.com/thmsgbrt/react-simple-pull-to-refresh#readme",
"devDependencies": {
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"ncp": "^2.0.0",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"rollup": "^1.25.0",
"rollup-plugin-delete": "^1.1.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-typescript2": "^0.24.3",
"typescript": "3.7.5"
},
"peerDependencies": {
"react": "^16.10.2 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.10.2 || ^17.0.0 || ^18.0.0"
},
"files": [
"build"
],
"typings": "build/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}