-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "react-infinity-loading",
"version": "1.0.1",
"description": "Event-driven, fully-controlled infinite scroll loading for React, especially for mobile",
"main": "dist/react-infinite-loading.js",
"module": "components/InfiniteLoading/InfiniteLoading.js",
"scripts": {
"build:dev": "NODE_ENV=development webpack --progress --config webpack.config.build.js",
"build:prod": "NODE_ENV=production webpack --progress --config webpack.config.build.js",
"build": "npm run build:dev && npm run build:prod && npm run build:demo",
"build:demo": "webpack --progress --config webpack.config.demo.js",
"watch": "webpack --watch --progress --config webpack.config.demo.js",
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonBoy/react-infinity-loading.git"
},
"keywords": [
"react",
"infinite scroll",
"infinite loading",
"scroll",
"mobile"
],
"author": "Jason Jiang <jasonlikenfs@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonBoy/react-infinity-loading/issues"
},
"homepage": "https://github.com/JasonBoy/react-infinity-loading#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^22.0.3",
"lint-staged": "^6.0.0",
"prettier": "1.9.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"spinkit": "^1.2.5",
"style-loader": "^0.18.2",
"webpack": "^2.5.1"
},
"dependencies": {
"fbemitter": "^2.1.1",
"prop-types": ">=15.5.10"
},
"peerDependencies": {
"react": ">=15.6.1"
}
}