-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 952 Bytes
/
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
{
"name": "swipe-detect",
"version": "1.0.1",
"description": "A touchevent swipe detection utility for JavaScript applications.",
"main": "dist/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhfen/swipe-detect.git"
},
"keywords": [
"swipe",
"detect",
"touch",
"touchevent",
"direction"
],
"author": "Matt Fender <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mhfen/swipe-detect/issues"
},
"homepage": "https://github.com/mhfen/swipe-detect#readme",
"devDependencies": {
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.7.0",
"jest": "^23.6.0"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"^~/(.*)$": "<rootDir>/$1"
}
}
}