-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
64 lines (64 loc) · 2.02 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
{
"name": "react-use-scrollspy",
"version": "3.1.1",
"author": "Patrick Böder <[email protected]>",
"homepage": "https://purii.github.io/react-use-scrollspy",
"description": "Flexible React Hook to automatically update navigation based on scroll position",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Purii/react-use-scrollspy.git"
},
"bugs": {
"url": "https://github.com/Purii/react-use-scrollspy/issues"
},
"scripts": {
"eslint:ci": "eslint src/ --ext .js,.jsx,.tsx,.ts -f stylish",
"eslint:fix": "eslint src/ --fix --ext .js,.jsx,.tsx,.ts -f stylish --quiet",
"prettier:ci": "prettier --check ./",
"prettier:fix": "prettier --write ./",
"test:ci": "yarn run eslint:ci && yarn run prettier:ci && yarn tsc --noEmit",
"build:module": "yarn tsc --outDir ./lib/module --sourceMap",
"build:commonjs": "yarn tsc --module commonjs --outDir ./lib/commonjs --sourceMap",
"build": "rimraf ./lib && yarn build:module && yarn build:commonjs",
"release:prepare": "yarn build",
"release": "standard-version"
},
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"/src",
"/lib",
"/README.md",
"/LICENSE"
],
"prettier": "@porscheofficial/prettier-config-porschedigital",
"dependencies": {
"lodash": "4.17.21"
},
"peerDependencies": {
"react": ">=16.8.6"
},
"devDependencies": {
"@porscheofficial/eslint-config-porschedigital-react": "2.1.0",
"@porscheofficial/prettier-config-porschedigital": "2.1.0",
"@types/lodash": "4.14.186",
"@types/react": "18.0.21",
"babel-eslint": "10.1.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.25.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"react": "18.2.0",
"rimraf": "3.0.2",
"standard-version": "9.5.0",
"typescript": "4.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}