-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "@nuxtjs/fontawesome",
"version": "1.1.2",
"description": "Module to join nuxt and Fontawesome 5",
"repository": "nuxt-community/fontawesome-module",
"license": "MIT",
"main": "lib/module.js",
"contributors": [
"vaso2 <[email protected]>"
],
"keywords": [
"vue",
"nuxt",
"nuxt-module",
"fontawesome"
],
"files": [
"lib",
"stories"
],
"scripts": {
"dev": "nuxt example",
"lint": "eslint --ext .js,.vue .",
"release": "yarn lint && yarn test && standard-version",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/vue-fontawesome": "^0.1.9"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@nuxtjs/eslint-config": "^2.0.2",
"babel-eslint": "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",
"jest": "latest",
"jsdom": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}