-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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": "swipeable-react",
"version": "2.0.0",
"main": "lib/index.js",
"description": "React component to enable swiping in mobile browsers",
"homepage": "https://github.com/moubi/swipeable-react#readme",
"author": "Miroslav Nikolov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/moubi/swipeable-react"
},
"keywords": [
"react",
"component",
"swiping",
"touch",
"mobile",
"detection",
"slide",
"swipe-events"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"babel-jest": "^25.1.0",
"babel-minify": "^0.5.1",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"jest": "^25.1.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-dom-testing": "^1.5.0",
"react-test-renderer": "^16.13.0",
"sinon": "9.0.0",
"unexpected": "^11.0.1",
"unexpected-dom": "^4.11.1",
"unexpected-reaction": "^2.6.0",
"unexpected-sinon": "^10.11.2",
"prettier": "~1.17.0",
"gzip-size-cli": "^3.0.0"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"scripts": {
"build": "mkdir -p lib && babel ./src --out-file ./lib/index.js --presets minify",
"size": "gzip-size ./lib/index.js",
"prepare": "rm -rf ./lib && npm run build",
"prepublishOnly": "npm run test:nowatch",
"test": "jest --watch",
"test:nowatch": "jest",
"lint": "eslint ."
}
}