-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
88 lines (88 loc) · 2.04 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
{
"name": "nuxt-svg-loader",
"version": "1.2.0",
"description": "",
"license": "MIT",
"contributors": [
{
"name": "Alexander Lichter <npm@lichter.io>"
}
],
"main": "lib/module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Developmint/nuxt-svg-loader"
},
"bugs": {
"url": "https://github.com/Developmint/nuxt-svg-loader/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt --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 $GIT_PARAMS",
"coverage": "codecov"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib"
],
"keywords": [
"nuxtjs",
"nuxt",
"nuxt-module",
"svg",
"loader",
"svg-loader"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/fixture"
],
"forceExit": true
},
"dependencies": {
"consola": "^2.3.2",
"svg-to-vue-component": "^0.3.1"
},
"devDependencies": {
"@commitlint/cli": "^7.3.1",
"@commitlint/config-conventional": "^7.3.1",
"@nuxtjs/eslint-config": "^0.0.1",
"babel-eslint": "^10.0.1",
"codecov": "^3.1.0",
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"get-port": "^4.1.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jsdom": "^13.1.0",
"nuxt-edge": "^2.4.0-25786640.3ebd6b70",
"standard-version": "^4.4.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"commit-msg": "yarn run commitlint"
}
}
}