-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "vue-cli-plugin-git-describe",
"version": "1.0.1",
"description": "Vue CLI git describe plugin",
"author": "Ingmar Delsink",
"scripts": {
"test": "npm-run-all test:lint test:unit",
"test:lint": "eslint --ext .js .",
"test:unit": "vue-cli-service test:unit"
},
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@vue/cli-plugin-unit-mocha": "^3.10.0",
"@vue/cli-service": "^3.10.0",
"@vue/test-utils": "1.0.0-beta.29",
"chai": "^4.1.2",
"eslint": "^5.16.0",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"git-describe": "^4.0.4",
"mocha": "^6.2.0",
"mocha-webpack": "^1.1.0",
"npm-run-all": "^4.1.5",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.39.1"
},
"vuePlugins": {
"service": [
"index.js"
]
},
"bugs": {
"url": "https://github.com/idelsink/vue-cli-plugin-git-describe/issues"
},
"homepage": "https://github.com/idelsink/vue-cli-plugin-git-describe#readme",
"keywords": [
"git",
"describe",
"version",
"hash",
"semver",
"git-describe",
"vue-cli",
"vue-cli-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/idelsink/vue-cli-plugin-git-describe.git"
}
}