-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
78 lines (78 loc) · 1.61 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-touch-carousel",
"version": "0.10.2",
"description": "Micro carousel framework for React.JS",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "npm run lint && npm run spec",
"lint": "standard",
"lint:fix": "standard --fix",
"spec": "ava",
"prebuild": "rm -rf lib; mkdir -p lib",
"build": "babel src --out-dir lib",
"dev": "npm run dev:docs",
"build:docs": "snowpack build",
"dev:docs": "snowpack dev",
"prepare": "npm run build"
},
"keywords": [
"react",
"react-component",
"carousel",
"slider",
"swipe"
],
"author": "xiaody",
"license": "MIT",
"repository": "xiaody/react-touch-carousel",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.14.3",
"@babel/eslint-parser": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"ava": "^3.15",
"classnames": "^2.3.1",
"husky": "^1.2.0",
"lint-staged": "^11",
"react": "^17",
"react-dom": "^17",
"snowpack": "^3.8.3",
"standard": "^16.0.3"
},
"dependencies": {
"@react-spring/web": "^9.2.4"
},
"standard": {
"ignore": [
"lib",
"docs/*.bundle.js"
],
"parser": "@babel/eslint-parser"
},
"ava": {
"require": [
"@babel/register"
],
"babel": true
},
"lint-staged": {
"*.{js,jsx}": [
"npm run lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
}
}