forked from PicGo/PicGo-Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.71 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
95
96
97
98
99
100
101
102
103
104
{
"name": "picgo",
"version": "1.4.3",
"description": "A tool for picture uploading",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"bin": {
"picgo": "./bin/picgo"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node ./bin/picgo",
"lint": "tslint src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p . && npm run copy",
"copy": "copyfiles -f src/utils/clipboard/* dist/src/utils/clipboard",
"dev": "tsc -w -p .",
"patch": "npm version patch && git push origin master && git push origin --tags",
"minor": "npm version minor && git push origin master && git push origin --tags",
"major": "npm version major && git push origin master && git push origin --tags",
"cz": "git-cz",
"release": "bump-version"
},
"keywords": [
"picture",
"upload",
"util"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"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"
]
},
"author": "Molunerfinn",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@picgo/bump-version": "^1.0.1",
"@types/cross-spawn": "^6.0.0",
"@types/fs-extra": "^5.0.4",
"@types/image-size": "^0.0.29",
"@types/inquirer": "^0.0.42",
"@types/lowdb": "^1.0.4",
"@types/md5": "^2.1.32",
"@types/node": "^10.5.2",
"@types/request-promise-native": "^1.0.15",
"@types/resolve": "^0.0.8",
"commitizen": "^3.0.7",
"conventional-changelog": "^3.0.6",
"copyfiles": "^2.1.0",
"cz-customizable": "^5.10.0",
"husky": "^1.3.1",
"pre-commit": "^1.2.2",
"tslint": "^5.10.0",
"tslint-config-standard": "^8.0.1",
"typescript": "3.7.4"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.17.0",
"comment-json": "^2.3.1",
"cross-spawn": "^6.0.5",
"dayjs": "^1.7.4",
"download-git-repo": "^1.1.0",
"ejs": "^2.6.1",
"fs-extra": "^6.0.1",
"globby": "^8.0.2",
"inquirer": "^6.0.0",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"md5": "^2.2.1",
"minimatch": "^3.0.4",
"probe-image-size": "^4.0.0",
"qiniu": "^7.2.1",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"resolve": "^1.8.1",
"rimraf": "^2.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PicGo/PicGo-Core.git"
},
"picBed": {
"current": "smms"
},
"plugins": {}
}