-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
87 lines (87 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
{
"name": "nuxt-webfontloader",
"version": "1.1.0",
"description": "Efficient web font loading has never been easier!",
"license": "MIT",
"contributors": [
{
"name": "Alexander Lichter <[email protected]>"
}
],
"main": "lib/module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Developmint/nuxt-webfontloader"
},
"bugs": {
"url": "https://github.com/Developmint/nuxt-webfontloader/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt -c test/fixture/configs/default.js",
"lint": "eslint lib test",
"test": "yarn run lint && jest",
"release": "standard-version && git push --follow-tags && npm publish",
"commitlint": "commitlint -e $GIT_PARAMS",
"coverage": "codecov"
},
"eslintIgnore": [
"lib/**/*.template.js"
],
"files": [
"lib"
],
"keywords": [
"nuxtjs",
"nuxt",
"nuxt-module",
"font",
"webfont",
"webfontloader"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/fixture"
],
"forceExit": true
},
"dependencies": {
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@nuxtjs/eslint-config": "^0.0.1",
"babel-eslint": "^10.0.1",
"codecov": "^3.4.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"get-port": "^5.0.0",
"husky": "^2.2.0",
"jest": "^24.8.0",
"jsdom": "^15.1.0",
"nuxt-edge": "^2.4.0-25811407.6d8da0ed",
"standard-version": "^6.0.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"commit-msg": "yarn run commitlint"
}
}
}