-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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
{
"name": "react-stickup",
"version": "1.12.1",
"description": "React components to stick elements at the top of the page while scrolling",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "rm -rf ./.cache && parcel ./examples/index.html --out-dir='examples-dist'",
"compile:docs": "rm -rf docs && parcel build ./examples/index.html ./examples/legacy-browsers.html --out-dir='docs' --public-url=\"https://garthenweb.github.io/react-stickup/\"",
"precompile": "rm -rf dist",
"compile": "rollup -c",
"test": "jest --coverage",
"fmt": "prettier --write \"lib/*.{ts,tsx}\" \"examples/*.{ts,tsx}\"",
"prepublishOnly": "npm test && npm run compile",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git://github.com/garthenweb/react-stickup"
},
"bugs": {
"url": "https://github.com/garthenweb/react-stickup/issues"
},
"author": "Jannick Garthen <[email protected]>",
"keywords": [
"react",
"sticky",
"header",
"scroll"
],
"license": "MIT",
"engines": {
"node": ">= 10.13.0"
},
"devDependencies": {
"@babel/preset-env": "^7.12.10",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"core-js": "^3.8.1",
"jest": "^25.5.4",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.34.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^25.5.1",
"typescript": "^4.1.3"
},
"dependencies": {
"react-viewport-utils": "^1.12.1"
},
"peerDependencies": {
"react": ">=16.3.0 <18.0.0"
}
}