This repository has been archived by the owner on Apr 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.61 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
{
"name": "is-animated-image",
"version": "0.1.1",
"description": "Created by create-n",
"keywords": [
"image",
"images",
"animated",
"animation",
"detection",
"binary",
"animated-gif",
"animated-png",
"animated-apng",
"animated-webp",
"animated-image",
"animated-images",
"is-animated-image",
"is-animated-images",
"is-animated"
],
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --collect-coverage",
"release:beta": "npm run coverage && standard-version --prerelease beta && npm publish --tag beta && git push --follow-tags",
"release": "npm run coverage && standard-version && npm publish && git push --follow-tags",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivaxy/is-animated-image.git"
},
"author": "vivaxy <xyxuye2007@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vivaxy/is-animated-image/issues"
},
"homepage": "https://github.com/vivaxy/is-animated-image#readme",
"devDependencies": {
"husky": "5",
"jest": "^26.0.1",
"lint-staged": "^10.0.0",
"pinst": "^2.1.4",
"prettier": "^2.0.0",
"standard-version": "^9.0.0"
},
"lint-staged": {
"**/**.{js,json,md}": [
"prettier --write"
]
},
"dependencies": {
"fast-glob": "^3.0.0",
"fs-extra": "^9.0.0"
},
"jest": {
"collectCoverageFrom": [
"index.js"
],
"testMatch": [
"<rootDir>/**/__tests__/**/*.test.js"
]
}
}