-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "use-scroll-bar",
"version": "0.0.0-development",
"description": "Get information of window scrollbar like current position and direction of last scroll.",
"main": "lib/index.js",
"repository": "https://github.com/jskod/use-scroll-bar.git",
"author": "Tauqeer Nasir <[email protected]>",
"license": "MIT",
"files": [
"lib/**"
],
"scripts": {
"test": "echo \"No test files found.\" && exit 0",
"semantic-release": "semantic-release",
"commit": "git-cz",
"build": "webpack --mode development",
"build:prod": "webpack --mode production"
},
"devDependencies": {
"@types/react": "^16.9.17",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"semantic-release": "^17.2.3",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}