-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
97 lines (97 loc) · 2.64 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
{
"name": "@researchgate/react-intersection-list",
"description": "React List Component using the Intersection Observer API",
"version": "3.0.12",
"author": "Luis Merino <[email protected]>",
"engines": {
"node": ">=10.0.0"
},
"bugs": {
"url": "https://github.com/researchgate/react-intersection-list/issues"
},
"dependencies": {
"@researchgate/react-intersection-observer": "^1.1.2",
"prop-types": "^15.7.2",
"warning": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.12",
"@researchgate/babel-preset": "2.0.14",
"@researchgate/spire-config": "7.0.0",
"@storybook/addon-options": "5.3.21",
"@storybook/react": "6.3.12",
"@types/react": "17.0.53",
"babel-loader": "8.3.0",
"cross-env": "7.0.3",
"intersection-observer": "0.12.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-test-renderer": "16.14.0",
"spire": "4.1.2",
"spire-plugin-semantic-release": "4.1.0",
"typescript": "4.9.5",
"whatwg-fetch": "3.6.2"
},
"files": [
"lib",
"types/index.d.ts"
],
"types": "types/index.d.ts",
"homepage": "https://github.com/researchgate/react-intersection-list#readme",
"keywords": [
"Intersection",
"Observer",
"react",
"component",
"list",
"infinite",
"scrollable",
"researchgate"
],
"license": "MIT",
"main": "lib/js/index.js",
"module": "lib/es/index.js",
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/researchgate/react-intersection-list.git"
},
"jest": {
"rootDir": "src",
"testMatch": [
"**/__tests__/**/*.spec.js"
],
"testURL": "http://localhost/"
},
"prettier": "@researchgate/prettier-config",
"spire": {
"extends": [
[
"@researchgate/spire-config",
{
"eslint": "react-typescript"
}
]
],
"plugins": [
"spire-plugin-semantic-release",
"<rootDir>/.spire/spire-plugin-tslint"
]
},
"scripts": {
"build": "yarn build:js && yarn build:es",
"build:js": "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore **/__tests__,**/__mocks__",
"build:es": "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore **/__tests__,**/__mocks__",
"build:storybook": "build-storybook -o .docs",
"lint": "spire lint",
"prepublishOnly": "yarn build",
"release": "spire release --branches main",
"storybook": "start-storybook -p 9001 -c .storybook",
"test": "spire test",
"ts:check": "tsc --project types"
}
}