-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.22 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"version": "1.3.4",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"homepage": "https://github.com/ron0115/react-smooth-scroll-hook#readme",
"repository": {
"type": "git",
"url": "https://github.com/ron0115/react-smooth-scroll-hook.git"
},
"description": "a series of react hooks to finish smooth scroll and wath scroll behavior",
"keywords": [
"react",
"hooks",
"smooth-scroll",
"scrollTo",
"scroll",
"util",
"js",
"javascript",
"typescript"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests --config jest.unit.config.js",
"test:e2e": "tsdx test --passWithNoTests --config jest.e2e.config.js",
"lint": "tsdx lint",
"prepare": "tsdx build",
"storybook": "start-storybook -p 6006 --docs",
"build-storybook": "build-storybook --docs",
"deploy-storybook": "storybook-to-ghpages",
"release": "semantic-release"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-smooth-scroll-hook",
"author": "liangzhirong",
"module": "dist/react-smooth-scroll-hook.esm.js",
"devDependencies": {
"@babel/core": "^7.11.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@storybook/addon-actions": "^6.0.20",
"@storybook/addon-docs": "^6.0.20",
"@storybook/addon-links": "^6.0.20",
"@storybook/addons": "^6.0.20",
"@storybook/react": "^6.0.20",
"@storybook/storybook-deployer": "^2.8.6",
"@types/jest-environment-puppeteer": "^4.4.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"add": "^2.0.6",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"husky": "^4.2.5",
"jest-enzyme": "^7.1.2",
"jest-puppeteer-preset": "^4.4.0",
"puppeteer": "^5.3.1",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"semantic-release": "^17.1.1",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.2",
"tsdx": "^0.13.2",
"tslib": "^2.0.1",
"typescript": "^4.0.2",
"yarn": "^1.22.10"
},
"publishConfig": {
"access": "public"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "{feat,fix}",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"branch": "master"
}
}