forked from seatgeek/react-infinite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.62 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-infinite",
"version": "0.11.0",
"description": "A browser-ready efficient scrolling container based on UITableView",
"main": "build/react-infinite.js",
"repository": {
"type": "git",
"url": "https://github.com/seatgeek/react-infinite"
},
"keywords": [
"react",
"react-component",
"scrolling",
"uitableview",
"infinite"
],
"author": "Gareth Tan",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/seatgeek/react-infinite/issues"
},
"browser": "build/react-infinite.js",
"scripts": {
"test": "./node_modules/.bin/jest",
"lint": "./node_modules/.bin/eslint ./src --ext .jsx --ext .js",
"fix": "./node_modules/.bin/eslint --fix --ext .jsx --ext .js ./src ./__tests__ ./pipeline",
"typecheck": "./node_modules/.bin/flow version && ./node_modules/.bin/flow check",
"verify": "npm test && npm run typecheck && npm run lint",
"preversion": "npm run verify",
"prepublish": "gulp release"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathDirs": [
"<rootDir>/__tests__",
"<rootDir>/src"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/helpers"
],
"testFileExtensions": [
"js",
"jsx"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"collectCoverage": true,
"verbose": true
},
"homepage": "https://github.com/seatgeek/react-infinite",
"devDependencies": {
"babel-eslint": "^4.0.7",
"babel-jest": "^5.3.0",
"babelify": "^6.3.0",
"browserify": "^9.0.3",
"coveralls": "^2.11.2",
"del": "2.0.2",
"envify": "3.4.0",
"eslint": "1.9.0",
"eslint-config-semistandard": "^5.0.0",
"eslint-config-standard": "^4.1.0",
"eslint-plugin-react": "^3.2.3",
"eslint-plugin-standard": "^1.2.0",
"flow-bin": "0.33.0",
"gulp": "^3.8.8",
"gulp-babel": "^5.2.1",
"gulp-concat": "^2.4.3",
"gulp-size": "^2.0.0",
"gulp-sourcemaps": "^1.2.4",
"gulp-uglify": "^1.0.1",
"gulp-webserver": "^0.9.1",
"jest-cli": "0.8.2",
"moment": "^2.10.6",
"react-test-renderer": "15.5.4",
"uglifyify": "3.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watch": "^0.16.0",
"watchify": "^3.4.0",
"yargs": "^1.3.2"
},
"dependencies": {
"lodash.isarray": "3.0.4",
"lodash.isfinite": "3.2.0",
"object-assign": "4.0.1"
},
"peerDependencies": {
"react": "^15.5.0",
"react-dom": "^15.5.0",
"create-react-class": "^15.5.0",
"prop-types": "^15.5.0"
},
"browserify": {
"transform": [
"envify"
]
}
}