-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
56 lines (56 loc) · 1.77 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
{
"name": "react-swipes",
"version": "1.1.0",
"description": "A react component for building a card or picture slide on mobile",
"homepage": "https://github.com/younth/react-swipes#readme",
"main": "dist/react-swipes.js",
"devDependencies": {
"ava": "^0.13.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"sinon": "^1.17.3",
"uglify-js": "^2.7.3",
"webpack": "^1.13.2",
"webpack-umd-external": "^1.0.2"
},
"scripts": {
"build": "npm run build-dist-dev && npm run build-dist-prod",
"build-dist-dev": "NODE_ENV=development webpack --config webpack.config --colors",
"build-dist-prod": "NODE_ENV=production webpack --config webpack.config --progress --colors -p",
"build-demo": "browserify ./demo/index.js -t [ babelify --presets [ es2015 stage-0 react ] --plugins [ transform-object-assign ] ] | uglifyjs -cm > ./demo/bundle.min.js",
"build-babel": "babel ./src/index.js",
"test": "echo \"Comming soon ;)\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/younth/react-swipes.git"
},
"keywords": [
"react-component",
"swiper",
"swipe",
"flipsnap",
"carousel"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/younth/react-swipes/issues"
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}