forked from gaer87/react-swipe-to-delete-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
{
"name": "react-swipe-to-delete-component",
"version": "0.4.0",
"description": "A simple React component implement 'swipe to delete' UI-pattern.",
"homepage": "https://github.com/gaer87/react-swipe-to-delete-component",
"main": "dist/swipe-to-delete.min.js",
"scripts": {
"start": "gulp",
"dev": "webpack-dev-server --config ./example/webpack.config.js --open",
"example:dist": "webpack --config ./example/webpack.config.js",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint ./src/js/* ./__tests__/*"
},
"keywords": [
"animation",
"mobile",
"react",
"react-component",
"swipe",
"swipe-to-delete",
"touch",
"touch-devices",
"touch-interface",
"ui-pattern"
],
"author": "Fedotov Alexander",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gaer87/react-swipe-to-delete-component"
},
"github": "https://github.com/gaer87/react-swipe-to-delete-component",
"devDependencies": {
"babel-core": "^6.6.5",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.16.0",
"coveralls": "^2.11.15",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"eslint": "^3.14.1",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^1.0.1",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"jest": "^18.1.0",
"node-sass": "^4.10.0",
"path": "^0.12.7",
"raf": "^3.4.0",
"react-test-renderer": "^16.1.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-stream": "^3.1.0"
},
"dependencies": {
"babel-runtime": "^6.20.0"
},
"peerDependencies": {
"react": "^16.1.1",
"react-dom": "^16.1.1",
"prop-types": "^15.6.0"
},
"jest": {
"moduleNameMapper": {
"\\.(scss)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}