-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
96 lines (96 loc) · 2.31 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "vue-link",
"version": "1.6.1",
"description": "One component to link them all!",
"author": "Alexander Lichter <npm@lichter.io>",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Developmint/vue-link"
},
"bugs": {
"url": "https://github.com/Developmint/vue-link/issues"
},
"scripts": {
"lint": "eslint lib test",
"test": "yarn lint && jest",
"release": "standard-version && git push --follow-tags && npm publish",
"commitlint": "commitlint -e $GIT_PARAMS",
"coverage": "codecov"
},
"files": [
"lib"
],
"keywords": [
"vue",
"vuejs",
"link",
"nuxt",
"nuxtjs",
"component",
"plugin"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/lib/$1"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@nuxtjs/eslint-config": "^0.0.1",
"@vue/server-test-utils": "1.0.0-beta.29",
"@vue/test-utils": "1.0.0-beta.29",
"cheerio": "^1.0.0-rc.2",
"codecov": "^3.2.0",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "22.3.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jest-serializer-vue": "^2.0.2",
"jsdom": "^14.0.0",
"standard-version": "^5.0.1",
"vue-jest": "^3.0.4",
"vue-router": "^3.0.2",
"vue-server-renderer": "^2.6.9",
"vue-template-compiler": "^2.6.9"
},
"dependencies": {
"vue": "^2.6.9"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run commitlint"
}
}
}