-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.46 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
88
89
90
91
92
93
94
{
"name": "imagemin-upng",
"version": "4.0.0",
"description": "upng imagemin plugin",
"keywords": [
"apng",
"compress",
"image",
"imageminplugin",
"img",
"minify",
"optimize",
"png",
"upng",
"upng-js"
],
"homepage": "https://github.com/fisker/imagemin-upng#readme",
"bugs": {
"url": "https://github.com/fisker/imagemin-upng/issues"
},
"repository": "fisker/imagemin-upng",
"funding": "https://github.com/fisker/imagemin-upng?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "lionkay@gmail.com",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"exports": "./index.js",
"files": [
"index.js"
],
"scripts": {
"build": "echo no need",
"clean": "run-p \"clean:*\"",
"clean:dist": "del-cli dist",
"dist": "run-p \"dist:*\"",
"dist:npm": "np --yolo --no-yarn",
"format": "run-p \"format:*\"",
"format:eslint": "yarn lint:eslint --fix",
"format:markdown": "yarn lint:markdown --fix",
"format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"format:prettier": "yarn lint:prettier --write",
"lint": "run-p \"lint:*\"",
"lint:eslint": "eslint \"**/*.{js,mjs,cjs,vue}\"",
"lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**\"",
"lint:package-json": "yarn run format:package-json --check",
"lint:prettier": "prettier \"**/*.{css,html,js,cjs,mjs,json,less,md,scss,ts,vue,yaml,yml}\" --check",
"release": "run-s clean build lint test format dist",
"test": "ava",
"test-coverage": "c8 yarn test"
},
"ava": {
"verbose": true
},
"c8": {
"all": true,
"include": [
"index.js"
],
"reporter": [
"lcov",
"text"
]
},
"dependencies": {
"is-png": "3.0.1",
"lib-upng": "3.0.0"
},
"devDependencies": {
"@fisker/eslint-config": "10.4.0",
"@fisker/eslint-config-ava": "2.0.6",
"@fisker/lint-staged-config": "3.3.2",
"@fisker/prettier-config": "5.1.1",
"ava": "5.3.1",
"c8": "9.1.0",
"cz-conventional-changelog": "3.3.0",
"del-cli": "5.1.0",
"eslint": "8.39.0",
"husky": "9.0.11",
"imagemin": "8.0.1",
"lint-staged": "15.2.2",
"markdownlint-cli": "0.39.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"sort-package-json": "2.9.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}