-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·74 lines (74 loc) · 2.13 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
{
"name": "nuxt-font-loader-strategy",
"version": "1.1.10",
"description": "Helps to load fonts and activate them by preloading.",
"keywords": [
"nuxtjs",
"font",
"webfont",
"preload",
"prefetch",
"webworker"
],
"repository": "GrabarzUndPartner/nuxt-font-loader-strategy",
"license": "MIT",
"contributors": [
{
"name": "Thorn-Welf Walli",
"email": "thorn.walli@grabarzundpartner.de"
},
{
"name": "Stephan Gerbeth",
"email": "stephan.gerbeth@grabarzundpartner.de"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"dev": "nuxt example",
"generate": "nuxt generate --config-file example/nuxt.config.js --target static",
"build": "nuxt build --config-file example/nuxt.config.js",
"start": "nuxt start --config-file example/nuxt.config.js --target static",
"lint": "yarn lint:js && yarn lint:css",
"lint:js": "eslint --ext .js,.vue example lib test",
"lint:css": "stylelint \"example/**/*.vue\" \"example/**/*.css\", \"lib/**/*.vue\" \"lib/**/*.css\"",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"change-case": "4.1.2",
"worker-loader": "3.0.8"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.2",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@nuxtjs/eslint-config": "6.0.0",
"@nuxtjs/module-test-utils": "1.6.3",
"babel-eslint": "10.1.0",
"babel-jest": "27.0.1",
"codecov": "3.8.2",
"core-js": "3.13.0",
"eslint": "7.27.0",
"eslint-plugin-json": "3.0.0",
"husky": "6.0.0",
"jest": "27.0.1",
"lint-staged": "11.0.0",
"nuxt-edge": "latest",
"pinst": "2.1.6",
"postcss-nesting": "7.0.1",
"standard-version": "9.3.0",
"stylelint": "13.13.1",
"stylelint-config-recess-order": "2.4.0",
"stylelint-config-standard": "22.0.0"
},
"publishConfig": {
"access": "public"
}
}