-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.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
{
"name": "rc-infinite-scroll-hook",
"version": "1.1.3",
"description": "react infinite scroll hook",
"main": "dist/useInfiniteScroll.js",
"scripts": {
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watchAll",
"lint": "tslint -p .",
"tsc": "tsc -d",
"start": "rm -rf example/dist && parcel ./example/src/index.html -d ./example/dist",
"prebuild": "rm -rf dist",
"build:example": "rm -rf example/dist && parcel build ./example/src/index.html -d ./example/dist",
"deploy": "gh-pages -d example/dist",
"publish-demo": "npm run build:example && npm run deploy",
"release": "npm run lint && npm run test && npm run tsc"
},
"keywords": [
"react",
"hook",
"infinite",
"scroll"
],
"author": "Alexander Yamkov",
"license": "MIT",
"homepage": "https://github.com/alllx/",
"repository": {
"type": "git",
"url": "https://github.com/alllx/rc-infinite-scroll-hook.git"
},
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@types/enzyme": "^3.10.6",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"coveralls": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"gh-pages": "^3.1.0",
"jest": "^26.4.2",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.11",
"ts-jest": "^26.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^5.0.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "^4.0.3",
"typescript-tslint-plugin": "^0.5.5"
},
"dependencies": {},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"collectCoverage": true,
"coverageDirectory": "dist/coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
]
}
}