-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.12 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": "vue-swipeable",
"version": "1.1.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -p tsconfig.json",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Scarg/vue-swipeable.git"
},
"keywords": [
"vue",
"typescript",
"swipe",
"drag",
"directive",
"draggable",
"swipeable",
"pull",
"pullable",
"notification",
"action",
"refresh"
],
"author": "Artem Martynyuk aka Scarg",
"license": "MIT",
"bugs": {
"url": "https://github.com/Scarg/vue-swipeable/issues"
},
"homepage": "https://github.fcom/Scarg/vue-swipeable#readme",
"devDependencies": {
"@types/vue": "^2.0.0",
"standard-version": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^3.7.4"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"tslint -p tsconfig.json",
"git add"
]
},
"files": [
"dist/**/*"
],
"dependencies": {}
}