forked from guillaumervls/react-infinite-scroll
-
Notifications
You must be signed in to change notification settings - Fork 509
/
package.json
71 lines (71 loc) · 2 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
{
"name": "react-infinite-scroller",
"version": "1.2.6",
"description": "Infinite scroll component for React in ES6",
"main": "index.js",
"jsnext:main": "src/InfiniteScroll.js",
"repository": {
"type": "git",
"url": "git://github.com/danbovey/react-infinite-scroller.git"
},
"scripts": {
"build": "mkdirp dist && babel src/InfiniteScroll.js --out-file dist/InfiniteScroll.js",
"prepublish": "npm run build",
"test": "nyc npm run spec",
"spec": "_mocha -R spec ./test/test_helper.js --recursive test/*_test.js",
"lint": "node_modules/.bin/eslint ./src ./test",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"node_modules/.bin/eslint --fix --max-warnings 0",
"git add"
]
},
"keywords": [
"infinite",
"scroll",
"react"
],
"author": "Dan Bovey <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danbovey/react-infinite-scroller/issues"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/react": "^13.0.1",
"babel-cli": "^6.6.5",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-istanbul": "^0.12.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.13.0",
"chai": "^3.5.0",
"eslint": "^4.10.0",
"eslint-config-last": "^0.0.3",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"jsdom": "^10.0.0",
"lint-staged": "^4.3.0",
"mkdirp": "^0.5.1",
"mocha": "^3.3.0",
"nyc": "^15.1.0",
"prettier": "^1.7.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sinon": "^2.1.0"
}
}