-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "nuxt-rfg-icon",
"version": "0.6.4",
"license": "MIT",
"description": "Nuxt.js module for creating favicons with RealFaviconGenerator api",
"repository": "https://github.com/pimlie/nuxt-rfg-icon",
"homepage": "https://github.com/pimlie/nuxt-rfg-icon",
"main": "lib/module.js",
"scripts": {
"dev": "NODE_ENV=production nuxt test/fixture",
"lint": "eslint lib test",
"release": "yarn lint && yarn test && standard-version",
"test": "nyc jest test"
},
"files": [
"lib"
],
"dependencies": {
"@nuxtjs/manifest": "^3.0.0-beta.14",
"axios": "^0.19.0",
"lodash.defaults": "^4.2.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.find": "^4.6.0",
"rfg-api": "^0.5.0",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@nuxtjs/eslint-config": "^1.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.0.1",
"eslint-config-standard-jsx": "^8.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"get-port": "^5.0.0",
"glob": "^7.1.4",
"jest": "^24.9.0",
"nuxt": "^2.9.1",
"nyc": "^14.1.1",
"standard-version": "^7.0.0"
}
}