forked from leandrowd/react-easy-swipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.3 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
76
77
78
79
80
81
82
{
"name": "react-easy-swipe",
"version": "0.0.4",
"description": "React easy swipe - Easy handler for common touch operations",
"main": "./lib/index.js",
"engines": {
"node": ">= 5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/leandrowd/react-easy-swipe.git"
},
"bugs": {
"url": "https://github.com/leandrowd/react-easy-swipe/issues"
},
"homepage": "http://leandrowd.github.io/react-easy-swipe/",
"scripts": {
"start": "watch 'npm run lint' ./src",
"lint": "eslint src/ test/",
"build": "babel src/ --out-dir ./lib",
"demo": "webpack",
"test": "mocha",
"tdd": "mocha --watch",
"coverage": "isparta cover _mocha --include-all-sources --report html --report lcovonly",
"coveralls": "cat coverage/lcov.info | coveralls",
"prerelease": "npm test && npm run lint && npm run build",
"release": "(git pull origin master && npm version patch && git push origin master && git checkout release && git merge master && git push origin release && git checkout master && npm publish)"
},
"author": {
"name": "Leandro Augusto Lemos",
"url": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.4.1",
"coveralls": "^2.11.4",
"del": "^2.2.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"eslint-plugin-react": "^3.11.3",
"gulp-babel": "^6.1.1",
"gulp-changed": "^1.3.0",
"gulp-eslint": "^1.1.1",
"gulp-mocha": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"isparta": "^4.0.0",
"jsdom": "^7.2.0",
"mocha": "^2.3.4",
"react-addons-test-utils": "^0.14.3",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"webpack": "^1.12.10"
},
"tags": [
"React",
"React swipe",
"React easy swipe",
"Swipe",
"Swiper"
],
"keywords": [
"React swipe",
"React easy swipe",
"React touch",
"react-swipe",
"react-easy-swipe",
"react-touch",
"react-component",
"Mobile",
"Swipe",
"Touch"
]
}