This repository has been archived by the owner on Jun 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 274
/
package.json
118 lines (118 loc) · 3.17 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-infinite",
"version": "0.13.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": "jest",
"lint": "eslint --ext .jsx --ext .js ./src ./__tests__ ./pipeline ./cypress",
"fix": "eslint --fix --ext .jsx --ext .js ./src ./__tests__ ./pipeline ./cypress",
"typecheck": "flow version && flow check",
"verify": "npm test && npm run typecheck && npm run lint",
"preversion": "npm run verify",
"prepublish": "gulp release",
"lint-staged": "lint-staged",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": "npm run fix",
"*.jsx": "npm run fix"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"roots": [
"<rootDir>/__tests__",
"<rootDir>/src"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/helpers"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"setupFiles": [
"raf/polyfill",
"./config/jest.js"
],
"collectCoverage": true,
"verbose": true
},
"homepage": "https://github.com/seatgeek/react-infinite",
"devDependencies": {
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.8",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babelify": "7.3.0",
"browserify": "^9.0.3",
"coveralls": "^2.11.2",
"create-react-class": "15.6.0",
"del": "2.0.2",
"envify": "3.4.0",
"enzyme": "3.3.0",
"enzyme-to-json": "3.3.1",
"eslint": "4.3.0",
"eslint-config-seatgeek-react-standard": "4.0.0",
"eslint-config-seatgeek-standard": "5.0.0",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-react": "7.1.0",
"eslint-plugin-standard": "3.0.1",
"flow-bin": "0.52.0",
"gulp": "^3.8.8",
"gulp-babel": "6.1.2",
"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",
"husky": "0.14.3",
"jest-cli": "20.0.4",
"lint-staged": "4.0.2",
"moment": "^2.10.6",
"react-test-renderer": "16.2.0",
"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": {
"enzyme-adapter-react-16": "1.1.1",
"lodash.isarray": "3.0.4",
"lodash.isfinite": "3.2.0",
"object-assign": "4.0.1"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"prop-types": "^15.5.0"
},
"browserify": {
"transform": [
"envify"
]
}
}