-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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",
"version": "2.0.2",
"description": "Detects animated images",
"keywords": [
"animated",
"animated gif",
"animated image",
"animated png",
"animated webp",
"animation",
"apng",
"gif",
"png",
"webp"
],
"homepage": "https://github.com/qzb/is-animated",
"bugs": {
"url": "https://github.com/qzb/is-animated/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/qzb/is-animated.git"
},
"license": "MIT",
"author": "Józef Sokołowski <[email protected]>",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e",
"release": "standard-version",
"test": "standard && tape test/*.js | tap-spec",
"test-ci": "standard && istanbul cover --report lcovonly -- tape test/*.js | tap-spec"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/prompt": "^16.0.0",
"@commitlint/travis-cli": "^16.0.2",
"commitizen": "^4.2.4",
"husky": "^1.3.1",
"istanbul": "^0.4.3",
"standard": "^15.0.1",
"standard-version": "^9.3.2",
"tap-spec": "^2.2.2",
"tape": "^4.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}