-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.67 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
{
"author": "Yamagishi Kazutoshi <[email protected]>",
"bugs": {
"url": "https://github.com/ykzts/blurhash-loader/issues"
},
"dependencies": {
"blurhash": "^1.1.4",
"loader-utils": "^2.0.0",
"schema-utils": "^3.1.1",
"sharp": "^0.30.5"
},
"description": "A blurhash loader module for webpack.",
"devDependencies": {
"@inabagumi/prettier-config": "^1.1.3",
"@types/eslint": "^7.28.0",
"@types/jest": "^27.0.2",
"@types/json-schema": "^7.0.9",
"@types/loader-utils": "^2.0.3",
"@types/node": "^14.17.18",
"@types/sharp": "^0.29.2",
"@types/webpack": "^4.41.31",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.1",
"memfs": "^3.3.0",
"microbundle": "^0.13.3",
"prettier": "~2.4.1",
"ts-jest": "^27.0.5",
"webpack": "^4.46.0",
"webpack-merge": "^5.8.0"
},
"files": [
"dist",
"src"
],
"homepage": "https://blurhash-loader.vercel.app/",
"keywords": [
"webpack",
"loader",
"blurhash"
],
"license": "MIT",
"name": "blurhash-loader",
"repository": {
"type": "git",
"url": "https://github.com/ykzts/blurhash-loader.git"
},
"main": "dist/blurhash-loader.js",
"module": "dist/blurhash-loader.module.js",
"scripts": {
"build": "microbundle --no-compress --format es,cjs --no-sourcemap --strict",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"test": "jest"
},
"source": "src/index.ts",
"types": "dist/index.d.ts",
"version": "0.6.0"
}