This repository has been archived by the owner on Dec 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
64 lines (64 loc) · 1.42 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
{
"author": "Kai Mallea <kmallea@gmail.com>",
"name": "imgur",
"description": "Upload images to imgur.com",
"version": "1.0.0",
"homepage": "https://github.com/kaimallea/node-imgur",
"license": "MIT",
"keywords": [
"imgur",
"upload",
"images"
],
"repository": {
"type": "git",
"url": "git://github.com/kaimallea/node-imgur.git"
},
"dependencies": {
"commander": "^7.1.0",
"form-data": "^4.0.0",
"got": "^11.8.1"
},
"main": "lib/imgur.js",
"bin": {
"imgur": "./cli.js"
},
"scripts": {
"test": "jest",
"prepare": "husky install",
"lint": "eslint . && prettier --check .",
"commit": "cz"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"mock-fs": "^4.13.0",
"msw": "^0.28.0",
"prettier": "^2.2.1",
"semantic-release": "^17.4.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"jest --bail --findRelatedTests"
],
"*.{js,css,md,yml,yaml,json}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}