-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.28 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
{
"name": "nuxt-bundle-buddy",
"version": "0.0.2",
"description": "Don't fight your webpack bundle, become friends!",
"license": "MIT",
"contributors": [
{
"name": "Alexander Lichter <npm@lichter.io>"
}
],
"main": "lib/module.js",
"repository": {
"mode": "git",
"url": "git+https://github.com/Developmint/nuxt-bundle-buddy"
},
"bugs": {
"url": "https://github.com/Developmint/nuxt-bundle-buddy/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt build --config-file test/fixture/configs/default.js",
"lint": "eslint lib test",
"test": "yarn run lint && jest --detectOpenHandles",
"release": "standard-version && git push --follow-tags && npm publish",
"commitlint": "commitlint -E HUSKY_GIT_PARAMS",
"coverage": "codecov",
"webpack-defaults": "webpack-defaults",
"defaults": "webpack-defaults"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib"
],
"keywords": [
"nuxtjs",
"nuxt",
"nuxt-module",
"bundle-buddy",
"webpack",
"visualize"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/fixture"
],
"forceExit": true
},
"dependencies": {
"bundle-buddy-webpack-plugin": "^0.3.0",
"consola": "2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@nuxtjs/eslint-config": "^0.0.1",
"babel-eslint": "^10.0.1",
"codecov": "^3.1.0",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"jsdom": "^13.0.0",
"nuxt-edge": "^2.3.0-25706271.cca799c",
"standard-version": "^4.4.0",
"webpack-defaults": "^3.0.0"
},
"resolutions": {
"bundle-buddy-webpack-plugin/bundle-buddy": "0.2.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"commit-msg": "yarn run commitlint"
}
}
}