This repository has been archived by the owner on Apr 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 1.86 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
{
"name": "vue-directive-long-press",
"version": "2.0.0",
"description": "Vue directive for Long Press",
"main": "dist/index.js",
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.13",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "^6.26.3",
"babel-jest": "^24.8.0",
"babel-preset-env": "^1.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.8.0",
"markdox": "^0.1.10",
"standard": "^12.0.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5",
"typescript-eslint-parser": "^22.0.0",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10"
},
"scripts": {
"test": "jest",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FeliciousX/vue-directive-long-press.git"
},
"keywords": [
"vue",
"directive",
"long-press"
],
"author": "FeliciousX",
"license": "MIT",
"bugs": {
"url": "https://github.com/FeliciousX/vue-directive-long-press/issues"
},
"homepage": "https://github.com/FeliciousX/vue-directive-long-press#readme",
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest",
"^.+\\.vue$": "<rootDir>/node_modules/vue-jest"
},
"testMatch": [
"<rootDir>/test/**.ts"
],
"moduleFileExtensions": [
"json",
"js",
"ts",
"vue"
],
"testURL": "http://localhost"
},
"standard": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
],
"envs": [
"jest"
]
}
}