-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
132 lines (132 loc) · 4.87 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-really-simple-infinite-scroll",
"version": "1.3.0",
"description": "Really simple infinite scroll component for React.",
"author": "Anton Bagdatyev (Tonix)",
"license": "MIT",
"repository": "tonix-tuft/react-really-simple-infinite-scroll",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"keywords": [
"infinite-scroll",
"infinite",
"scroll",
"list",
"react-component",
"component",
"react"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!react-js-utl)"
],
"collectCoverageFrom": [
"!src/.eslintrc.js",
"!src/**/*.scss",
"!src/**/*.css",
"!src/**/__snapshots__/**/*",
"!src/**/__mocks__/**/*"
]
},
"scripts": {
"test": "react-scripts test --env=jsdom --colors --watchAll=false",
"test-coverage": "react-scripts test --env=jsdom --colors --coverage --watchAll=false",
"test:watch": "react-scripts test --env=jsdom --colors",
"test-ci": "cross-env CI=1 react-scripts test --env=jsdom --colors",
"build": "rollup -c",
"start": "rollup -c -w",
"mkdir-module": "mkdir -p ./module",
"mkdir-build": "mkdir -p ./dist",
"prepare": "npm run mkdir-build && npm run clear-build && npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"clear-build": "find ./dist ! -name '.gitignore' -type f -exec rm -f {} +",
"build-module": "npm run mkdir-build && cross-env BABEL_ENV=module ./node_modules/.bin/babel ./src --out-dir ./module --source-maps --copy-files",
"build-all": "npm run prepare",
"watch-build-module": "npm run build-module && ./node_modules/.bin/onchange './src/**' -- npm run build-module",
"publish-patch": "npm run prepare && npm version patch && npm publish && git push && git push --tags",
"publish-minor": "npm run prepare && npm version minor && npm publish && git push && git push --tags",
"publish-major": "npm run prepare && npm version major && npm publish && git push && git push --tags"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-external-helpers": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-do-expressions": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-bind": "^7.11.5",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-pipeline-operator": "^7.10.5",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/traverse": "^7.11.5",
"@babel/types": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-url": "^5.0.1",
"@svgr/rollup": "^5.4.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-eslint": "10.1.0",
"babel-jest": "^26.6.0",
"cross-env": "^6.0.3",
"enzyme": "^3.11.0",
"eslint": "^7.0.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.1.1",
"jest-in-case": "^1.0.2",
"node-sass": "^4.14.1",
"onchange": "^6.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"react-test-renderer": "^17.0.2",
"rollup": "^2.28.1",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-postcss": "^3.1.8",
"snapshot-diff": "^0.9.0",
"typescript": "^3.9.7"
},
"dependencies": {
"js-utl": "^4.59.0",
"prop-types": "^15.7.2",
"react-js-utl": "^1.71.0"
},
"files": [
"dist"
]
}