-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "version-rocket",
"version": "1.7.4",
"description": "Tools to check version monitoring (updates) for web application. web 应用版本监测(更新)工具",
"main": "index.js",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "[email protected]:guMcrey/version-rocket.git"
},
"bin": {
"generate-version-file": "./scripts/createVersionFile.js",
"send-lark-message": "./scripts/sendMessageToLark.js",
"send-wecom-message": "./scripts/sendMessageToWeCom.js"
},
"keywords": [
"web",
"version",
"update",
"versioning",
"check version",
"update version",
"version check",
"upgrade"
],
"author": "hakuna",
"license": "ISC",
"dependencies": {
"axios": "^1.6.0",
"dayjs": "^1.11.3"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@jest/types": "^28.1.3",
"@types/jest": "^28.1.6",
"codecov": "^3.8.3",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}