forked from goncy/react-swipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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-swipy",
"author": "Gonzalo Pozzo <goncy>",
"version": "0.0.5",
"license": "ISC",
"description": "React swipeable component",
"main": "dist/react-swipy.min.js",
"keywords": [
"react",
"tinder",
"swipe",
"swipeable",
"card",
"deck",
"swiper",
"swipy"
],
"scripts": {
"build": "PACKAGE_NAME=react-swipy rollup --config scripts/rollup.config.js",
"test": "jest",
"cover": "npm test -- --coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/goncy/react-swipy.git"
},
"files": [
"README.md",
"dist/"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"change-case": "^3.0.2",
"coveralls": "^3.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"jest": "^23.0.0",
"prettier": "^1.13.5",
"react-test-renderer": "^16.4.0",
"rollup": "^0.59.1",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0"
},
"dependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-spring": "^5.3.8"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test-setup.js",
"verbose": true,
"collectCoverage": true,
"notify": true,
"collectCoverageFrom": [
"**/src/*.{js,jsx}"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/helpers"
]
}
}