-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.62 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
{
"name": "picgo-plugin-quick-capture",
"version": "1.0.0-alpha.2",
"description": "A quick capture screenshot plugin for PicGo",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/PicGo/picgo-plugin-quick-capture",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p . && npm run copy",
"dev": "tsc -w -p .",
"copy": "copyfiles -f src/PrScrn.dll dist/",
"cz": "git-cz",
"release": "bump-version"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@picgo/bump-version/.cz-config.js"
}
},
"commitlint": {
"extends": [
"./node_modules/@picgo/bump-version/commitlint-picgo"
]
},
"keywords": [
"picgo",
"picgo-gui-plugin",
"picgo-plugin"
],
"author": "Molunerfinn",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@picgo/bump-version": "^1.0.3",
"@types/node": "^10.10.1",
"commitizen": "^4.0.3",
"conventional-changelog": "^3.1.18",
"copyfiles": "^2.1.1",
"cz-customizable": "^6.2.0",
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^3.1.0",
"picgo": "^1.4.0",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^3.7.3"
}
}