forked from FormidableLabs/react-swipeable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.92 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.92 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
{
"name": "react-swipeable",
"version": "5.2.0-alpha.0",
"description": "Swipe and touch handlers for react",
"main": "./lib/index.js",
"module": "es/index.js",
"scripts": {
"build": "rollup -c",
"build:examples": "cd ./examples && npm install && npm run build",
"build:publish:examples": "npm run build:examples && rimraf examples/node_modules && gh-pages -d examples",
"clean": "rimraf lib es",
"format": "prettier --write '{src,__{tests,mocks}__}/**/*.js'",
"lint": "eslint .",
"prebuild": "npm run clean",
"prepare": "npm run build",
"pretest": "npm run lint",
"size": "size-limit",
"start:examples": "cd ./examples && npm install && npm run start:dev",
"test": "npm run test:unit && npm run dtslint && npm run build && npm run size",
"test:unit": "jest",
"dtslint": "dtslint types"
},
"size-limit": [
{
"limit": "1.875 KB",
"path": "es/index.js"
}
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/helpers/"
]
},
"keywords": [
"react swipe",
"react touch",
"react hook",
"react-swipe",
"react-touch",
"touch",
"swipe",
"mobile",
"swipeable",
"react",
"hook",
"react-component"
],
"authors": [
"Josh Perez <josh@goatslacker.com> (https://github.com/goatslacker)",
"Brian Emil Hartz <brianhartz@gmail.com> (https://github.com/hartzis)"
],
"repository": {
"type": "git",
"url": "http://github.com/dogfessional/react-swipeable.git"
},
"bugs": {
"url": "https://github.com/dogfessional/react-swipeable/issues"
},
"homepage": "https://github.com/dogfessional/react-swipeable",
"files": [
"lib",
"es",
"src",
"types/index.d.ts"
],
"license": "MIT",
"types": "types",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.2",
"@types/react": "^16.8.12",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.19",
"dtslint": "^0.6.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^1.0.0",
"jest": "^23.6.0",
"prettier": "1.15.3",
"react": "16.8.0-alpha.0",
"react-dom": "^16.8.0-alpha.0",
"rimraf": "^2.6.1",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"size-limit": "^0.21.1"
},
"dependencies": {
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": "^16.0.0-0"
}
}