-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "vue-cli-plugin-buefy",
"description": "Vue CLI 3.x plugin to add vue-buefy to your Vue Project",
"version": "0.3.8",
"author": {
"name": "anteriovieira",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/buefy/vue-cli-plugin-buefy/issues"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@vue/cli": "^3.0.0-beta.6",
"@vue/cli-test-utils": "^3.0.0-beta.6",
"babel-preset-env": "^1.6.1",
"codecov": "^3.0.0",
"debug": "^3.1.0",
"eslint": "^4.16.0",
"eslint-config-buefy": "^0.0.2",
"eslint-plugin-jest": "^21.14.1",
"eslint-plugin-vue-libs": "^2.1.0",
"jest": "^22.1.4",
"standard-version": "^4.3.0"
},
"homepage": "https://github.com/buefy/vue-cli-plugin-buefy#readme",
"main": "index.js",
"keywords": [
"vue",
"vue-cli",
"plugin",
"buefy"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/buefy/vue-cli-plugin-buefy.git"
},
"scripts": {
"release": "standard-version && git push --follow-tags && npm publish",
"lint": "eslint --ext .js generator",
"test": "yarn run lint && jest"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true
}
}