forked from nuxt/image
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·82 lines (82 loc) · 2.2 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
{
"name": "@nuxt/image",
"version": "0.6.0",
"description": "Nuxt Image Module",
"repository": "nuxt/image",
"license": "MIT",
"sideEffects": false,
"main": "dist/module.js",
"types": "dist/types.d.ts",
"files": [
"dist",
"vetur"
],
"scripts": {
"build": "siroc build && mkdist --src src/runtime --dist dist/runtime -d --ext js",
"dev": "yarn nuxt playground",
"docs:build": "cd docs && nuxt generate",
"docs:dev": "yarn nuxt dev docs",
"lint": "eslint --ext .ts --ext .vue .",
"prepublishOnly": "yarn build",
"release": "standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && yarn jest --forceExit",
"test:e2e": "jest test/e2e --forceExit",
"test:unit": "jest test/unit --forceExit"
},
"dependencies": {
"consola": "^2.15.3",
"defu": "^5.0.0",
"fs-extra": "^10.0.0",
"hasha": "^5.2.2",
"image-meta": "^0.0.1",
"is-https": "^4.0.0",
"lru-cache": "^6.0.0",
"node-fetch": "^2.6.1",
"p-limit": "^3.1.0",
"rc9": "^1.2.0",
"requrl": "^3.0.2",
"semver": "^7.3.5",
"ufo": "^0.7.9",
"upath": "^2.0.1"
},
"devDependencies": {
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"@cyrilf/vue-dat-gui": "latest",
"@nuxt/test-utils": "latest",
"@nuxt/types": "latest",
"@nuxt/typescript-build": "latest",
"@nuxt/typescript-runtime": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/fs-extra": "latest",
"@types/jest": "latest",
"@types/lru-cache": "latest",
"@types/node-fetch": "^2",
"@types/semver": "^7.3.8",
"@vue/test-utils": "latest",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "latest",
"eslint": "latest",
"jest": "latest",
"jsdom": "latest",
"jsdom-global": "latest",
"mkdist": "latest",
"nuxt": "^2.15.8",
"playwright": "latest",
"siroc": "latest",
"standard-version": "latest",
"ts-loader": "^8",
"typescript": "latest",
"vue-jest": "latest"
},
"optionalDependencies": {
"ipx": "^0.8.0"
},
"publishConfig": {
"access": "public"
},
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
}
}