-
-
Notifications
You must be signed in to change notification settings - Fork 248
/
package.json
68 lines (68 loc) · 1.54 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
{
"ava": {
"babel": {
"compileAsTests": [
"test/helpers/**/*"
]
},
"files": [
"test/swing/**/*"
],
"require": [
"@babel/register",
"./test/helpers/setupBrowserEnvironment.js"
]
},
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"dependencies": {
"hammerjs": "^2.0.8",
"lodash": "^4.17.15",
"raf": "^3.4.1",
"rebound": "^0.1.0",
"sister": "^3.0.2",
"vendor-prefix": "^0.1.0"
},
"description": "A swipeable cards interface. The swipe-left/swipe-right for yes/no input. As seen in apps like Jelly and Tinder.",
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"ava": "^3.6.0",
"babel-plugin-lodash": "^3.3.4",
"browser-env": "^3.3.0",
"eslint": "^6.8.0",
"eslint-config-canonical": "^19.0.4",
"husky": "^4.2.3",
"semantic-release": "^17.0.4",
"sinon": "^9.0.1"
},
"keywords": [
"swipe",
"cards"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "swing",
"repository": {
"type": "git",
"url": "https://github.com/gajus/swing"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"scripts": {
"build": "babel ./src --out-dir ./dist --copy-files",
"lint": "eslint ./src ./test",
"test": "ava --verbose --serial"
},
"version": "3.1.0"
}