forked from danbovey/react-infinite-scroller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "react-infinite-scroller",
"version": "1.0.15",
"description": "Infinite scroll component for React in ES6",
"main": "index.js",
"jsnext:main": "src/InfiniteScroll.js",
"repository": {
"type": "git",
"url": "git://github.com/CassetteRocks/react-infinite-scroller.git"
},
"scripts": {
"build": "mkdir -p 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": "eslint src test"
},
"keywords": [
"infinite",
"scroll",
"react"
],
"author": "CassetteRocks",
"license": "MIT",
"bugs": {
"url": "https://github.com/CassetteRocks/react-infinite-scroller/issues"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-istanbul": "^0.12.2",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-istanbul": "^4.1.1",
"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",
"chai-enzyme": "^0.6.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"istanbul": "^0.4.5",
"jsdom": "^10.0.0",
"mocha": "^3.3.0",
"nyc": "^10.2.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"sinon": "^2.1.0",
"webpack": "^2.5.1"
}
}