-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
{
"name": "react-swipeable",
"version": "4.1.0",
"description": "Swipe bindings 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__ --no-comments",
"build:publish:examples": "./scripts/build_gh_pages.sh",
"prepublish": "npm run build:lib"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/helpers/"
]
},
"keywords": [
"swipe",
"flick",
"swipeable",
"react",
"web",
"mobile",
"ios",
"android",
"react-component"
],
"author": "Josh Perez <[email protected]>",
"repository": {
"type": "git",
"url": "http://github.com/dogfessional/react-swipeable.git"
},
"files": [
"lib",
"src"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-jest": "^18.0.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015-loose": "^6.1.4",
"babel-preset-react": "^6.3.13",
"enzyme": "^2.7.0",
"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",
"jest": "^18.1.0",
"react": "^15.5.0",
"react-addons-test-utils": "^15.5.0",
"react-dom": "^15.5.0",
"react-test-renderer": "^15.5.0"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
}
}