-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.39 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
{
"name": "@epeejs/react-scroll-snap",
"description": "A Scroll Snap component for React",
"version": "0.1.1",
"scripts": {
"build": "father-build",
"release": "npm run build && npm publish",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"prepare": "husky install"
},
"main": "es/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/epeejs/react-scroll-snap"
},
"license": "MIT",
"files": [
"es",
"README.md"
],
"sideEffects": [
"**/*.css",
"**/*.less"
],
"keywords": [
"scroll-snap",
"react-scroll-snap",
"react"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/lodash": "^4.14.177",
"@types/react": "^17.0.32",
"@umijs/fabric": "^2.6.7",
"@umijs/test": "^3.5.18",
"father-build": "^1.20.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.4.0",
"react": "^17.0.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{json,ts,tsx,js,jsx,md,scss,less,css,html}": "prettier --write"
},
"dependencies": {
"classnames": "^2.3.1",
"lodash": "^4.17.21"
},
"peerDependencies": {
"react": ">=16.9.0"
}
}