-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 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
{
"name": "react-use-infinite-loader",
"version": "1.0.0",
"description": "Infinitely load new content in React using a simple React hook",
"main": "useInfiniteLoader.es5.js",
"repository": "[email protected]:CurationCorp/react-use-infinite-loader.git",
"author": "Rob Calcroft",
"types": "index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint .",
"build": "babel useInfiniteLoader.js --out-file useInfiniteLoader.es5.js",
"start": "parcel example/index.html --no-source-maps --no-cache --out-dir example/dist",
"buildExample": "parcel build example/index.html --no-source-maps --no-cache --out-dir example/dist",
"release": "yarn test && yarn build && standard-version"
},
"peerDependencies": {
"react": ">= 16.8.x"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.4.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.14.3",
"jest": "^25.4.0",
"jest-puppeteer": "^4.4.0",
"parcel": "^1.12.4",
"prettier": "^2.0.5",
"puppeteer": "^3.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"standard-version": "^8.0.1"
}
}