forked from FormidableLabs/react-swipeable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "react-swipeable",
"version": "4.3.1",
"description": "Swipe and touch handlers for react",
"main": "lib/Swipeable.js",
"scripts": {
"test": "npm run test:unit && npm run lint",
"test:unit": "jest",
"lint": "eslint .",
"build:lib": "babel src --out-dir lib --ignore __tests__,__mocks__ --no-comments",
"build:publish:examples": "npm run build:examples && rimraf examples/node_modules && gh-pages -d examples",
"build:examples": "cd ./examples && npm install && npm run build",
"start:examples": "cd ./examples && npm install && npm run start",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build:lib"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/helpers/"
]
},
"keywords": [
"react swipe",
"react touch",
"react-swipe",
"react-touch",
"touch",
"swipe",
"flick",
"mobile",
"swipeable",
"react",
"react-component"
],
"author": "Josh Perez <josh@goatslacker.com>",
"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",
"src"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015-loose": "^6.1.4",
"babel-preset-react": "^6.3.13",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"gh-pages": "^1.0.0",
"jest": "^23.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"detect-passive-events": "^1.0.4",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
}
}