-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
{
"name": "nuxt-fontagon",
"version": "1.0.4",
"description": "Easy convert SVG from nuxt to icon font.",
"main": "lib/module.js",
"homepage": "https://github.com/kdydesign/nuxt-fontagon",
"repository": "https://github.com/kdydesign/nuxt-fontagon",
"bugs": {
"url": "https://github.com/kdydesign/nuxt-fontagon/issues",
"email": "kdydesign@gmail.com"
},
"scripts": {
"dev": "nuxt test/fixture",
"lint": "eslint lib test",
"test": "yarn lint && jest",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"keywords": [
"nuxt",
"nuxtjs",
"nuxt-module",
"iconfont",
"webfont",
"fontagon",
"nuxt-font"
],
"contributors": [
{
"name": "Dev.DY <kdydesign@gmail.com>"
}
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"dependencies": {
"core-js": "^3.6.5",
"consola": "^2.14.0",
"fontagon": "^1.1.1"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"eslint-plugin-vue": "latest",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
}
}