-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "react-scrollable-list-view",
"version": "2.0.1",
"description": "List View component to handle cell recycling, positioning, measuring, and more.",
"main": "dist/ReactScrollableListView.js",
"jsnext:main": "lib/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:dist",
"build:lib": "react-build-lib",
"build:dist": "react-build-dist --bundle-name ReactScrollableListView.js -p $(pwd)",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib/*",
"dist/*"
],
"keywords": [
"react",
"infinite",
"list",
"list-view",
"scroll",
"react-component",
"periscope"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamJoeTaylor/react-scrollable-list-view.git"
},
"author": "Joe Taylor <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamJoeTaylor/react-scrollable-list-view/issues"
},
"homepage": "https://github.com/iamJoeTaylor/react-scrollable-list-view#readme",
"devDependencies": {
"react": "^15.4.2",
"react-build-dist": "iamJoeTaylor/react-build-dist",
"react-build-lib": "0.0.2",
"react-dom": "^15.4.2",
"styled-components": "^1.4.4"
},
"react-build-dist": {
"externals": {
"react": "react",
"react-dom": "react-dom"
}
},
"dependencies": {}
}