forked from voronianski/react-swipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 943 Bytes
/
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
{
"name": "react-swipe",
"version": "4.0.1",
"description": "Brad Birdsall's Swipe.js, as a React component",
"homepage": "https://github.com/voronianski/react-swipe",
"keywords": [
"react",
"component",
"carousel",
"swipe",
"react-component"
],
"author": "Jed Schmidt <where@jed.is>",
"repository": {
"type": "git",
"url": "git://github.com/voronianski/react-swipe.git"
},
"main": "react-swipe.js",
"license": "MIT",
"devDependencies": {
"browserify": "^5.9.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"uglify-js": "^2.4.19"
},
"scripts": {
"build": "NODE_ENV=production uglifyjs react-swipe.js -cm -o react-swipe.min.js",
"build-dev": "browserify ./demo/index.js | uglifyjs -cm > ./demo/bundle.min.js",
"prepublish": "npm run build"
},
"dependencies": {
"object-assign": "^4.0.1"
},
"peerDependencies": {
"swipe-js-iso": ">=2.0.2"
}
}