-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
72 lines (72 loc) · 2.03 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
72
{
"name": "react-bidirectional-infinite-scroll",
"version": "2.0.1",
"description": "Bidirectional infinite scroll written using react",
"main": "lib/index.js",
"files": [
"es",
"lib"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"lint": "eslint src demo",
"lint:fix": "eslint src demo --fix",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"storybook": "start-storybook -p 9001",
"storybook:build": "build-storybook",
"storybook:publish": "gh-pages -d storybook-static"
},
"dependencies": {},
"peerDependencies": {
"prop-types": "15.x",
"react": "15.x || 16.x",
"react-dom": "15.x || 16.x"
},
"devDependencies": {
"@storybook/react": "^3.3.14",
"ajv": "^6.1.1",
"babel-eslint": "^8.2.2",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^1.1.0",
"inferno": "^3.10.1",
"nwb": "0.21.x",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"sinon": "^4.4.1"
},
"author": "Andre Eberhardt - [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/eberhara/react-bidirectional-infinite-scroll/issues"
},
"homepage": "https://github.com/eberhara/react-bidirectional-infinite-scroll",
"repository": {
"type": "git",
"url": "https://github.com/eberhara/react-bidirectional-infinite-scroll.git"
},
"keywords": [
"react",
"react-component",
"infinite-scroll"
],
"engines": {
"node": "^9.6.1 || ^8.0.0",
"npm": "^5.6.0"
}
}