-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
133 lines (133 loc) · 3.65 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "picgo",
"version": "1.5.7",
"description": "A tool for picture uploading",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"bin": {
"picgo": "./bin/picgo"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node ./bin/picgo",
"lint": "eslint src/**/*.ts && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production rimraf ./dist && rollup -c rollup.config.js",
"dev": "cross-env NODE_ENV=development rollup -c rollup.config.js -w",
"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": {
"@picgo/bump-version": "^1.1.2",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-replace": "^3.0.0",
"@types/cross-spawn": "^6.0.0",
"@types/ejs": "^3.0.5",
"@types/fs-extra": "^5.0.4",
"@types/image-size": "^0.0.29",
"@types/inquirer": "^0.0.42",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.175",
"@types/md5": "^2.1.32",
"@types/mime-types": "^2.1.0",
"@types/minimatch": "^3.0.3",
"@types/node": "16.11.7",
"@types/resolve": "^0.0.8",
"@types/rimraf": "^3.0.0",
"@types/tunnel": "^0.0.3",
"@typescript-eslint/eslint-plugin": "3",
"@typescript-eslint/parser": "^3.2.0",
"babel-eslint": "^10.1.0",
"builtins": "^4.0.0",
"conventional-changelog": "^3.0.6",
"copyfiles": "^2.1.0",
"cross-env": "^7.0.3",
"cz-customizable": "^5.10.0",
"eslint": "7",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"execa": "^5.1.1",
"husky": "^1.3.1",
"pre-commit": "^1.2.2",
"rollup": "^2.58.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.8.2"
},
"dependencies": {
"@picgo/i18n": "^1.0.0",
"@picgo/store": "^2.0.2",
"axios": "^0.27.2",
"chalk": "^2.4.1",
"commander": "^8.1.0",
"comment-json": "^2.3.1",
"cross-spawn": "^6.0.5",
"dayjs": "^1.7.4",
"download-git-repo": "^3.0.2",
"ejs": "^2.6.1",
"fs-extra": "^6.0.1",
"globby": "^11.0.4",
"image-size": "^0.8.3",
"inquirer": "^6.0.0",
"is-wsl": "^2.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"md5": "^2.2.1",
"mime-types": "2.1.33",
"minimatch": "^3.0.4",
"minimist": "^1.2.5",
"qiniu": "^7.2.1",
"resolve": "^1.8.1",
"rimraf": "^3.0.2",
"tunnel": "^0.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PicGo/PicGo-Core.git"
},
"picBed": {
"current": "smms"
},
"plugins": {},
"engines": {
"node": ">= 12.0.0"
}
}