forked from voronianski/react-swipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
{
"name": "react-swipe",
"version": "5.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": "Dmitri Voronianski <[email protected]>",
"contributors": [
"Jed Schmidt <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/voronianski/react-swipe.git"
},
"main": "index.js",
"license": "MIT",
"devDependencies": {
"ava": "^0.13.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.2.3",
"mocha": "^2.4.5",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"sinon": "^1.17.3",
"swipe-js-iso": "^2.0.3",
"uglify-js": "^2.6.2",
"webpack": "^1.12.14",
"webpack-umd-external": "^1.0.2"
},
"scripts": {
"build": "npm run build-babel && 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 ./new-demo/index.js -t [ babelify --presets [ es2015 stage-0 react ] --plugins [ transform-object-assign ] ] | uglifyjs -cm > ./new-demo/bundle.min.js",
"build-babel": "babel ./src/ReactSwipe.js --out-file index.js",
"lint": "eslint ./src",
"lint-dev": "eslint --fix ./src",
"test": "echo \"Comming soon ;)\" && exit 0"
},
"dependencies": {}
}