-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
executable file
·49 lines (49 loc) · 1.02 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
{
"name": "nuxt-buefy",
"version": "0.4.29",
"description": "Nuxt buefy",
"license": "MIT",
"contributors": [
{
"name": "Antério Vieira <anteriovieira@gmail.com>"
}
],
"main": "lib/module.js",
"repository": "https://github.com/buefy/nuxt-buefy",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt test/fixture",
"lint": "eslint lib test",
"test": "npm run lint && jest",
"release": "standard-version && git push --follow-tags && yarn publish"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"buefy": "^0.9.29"
},
"devDependencies": {
"buffer": "^6.0.3",
"codecov": "^3.1.0",
"eslint": "^4.18.2",
"eslint-config-buefy": "^0.0.3",
"eslint-plugin-jest": "^21.22.0",
"jest": "^29.7.0",
"jsdom": "^12.0.0",
"nuxt": "2.17.3",
"standard-version": "^4.4.0"
},
"engines": {
"node": ">=8.0.0"
}
}