-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2 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
{
"name": "@automattic/vip-go-preflight-checks",
"version": "2.0.19-dev.0",
"description": "Provide a set of automated tests (or checks) that can test and validate the application functionality and responsiveness with an environment as close to production as possible, before the actual deployment to an environment.",
"main": "dist/index.js",
"bin": {
"aaa-npm-npx-pre-v7-use-me": "dist/preflight-checks.js",
"vip-go-preflight-checks": "dist/preflight-checks.js",
"harmonia": "dist/cli.js",
"harmonia-ci": "dist/ci.js"
},
"scripts": {
"build": "tsc",
"build:chmod": "chmod +x dist/cli.js dist/ci.js dist/preflight-checks.js",
"build:watch": "tsc --watch",
"check-types": "tsc --noEmit",
"clean": "rm -rf dist",
"exec": "ts-node src/index.ts",
"exec:debug": "DEBUG=* npm run exec",
"lint": "eslint .",
"postbuild": "npm run build:chmod",
"test": "npm run check-types && npm run lint && npm run test:unit",
"test:unit": "jest",
"prepare": "npm run clean && npm run build && npm run postbuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/vip-go-harmonia.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Automattic/vip-go-harmonia/issues"
},
"homepage": "https://github.com/Automattic/vip-go-harmonia#readme",
"devDependencies": {
"@automattic/eslint-plugin-wpvip": "^0.3.0",
"@types/jest": "^29.5.10",
"@types/node": "^17.0.13",
"@types/node-fetch": "^2.6.1",
"eslint": "^8.22.0",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"chalk": "^4.1.2",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.1",
"debug": "^4.3.3",
"dotenv": "^16.0.0",
"execa": "^5.1.1",
"node-abort-controller": "^3.0.1",
"node-fetch": "^2.6.7",
"octokit": "^3.1.2",
"semver": "^7.3.5",
"strip-ansi": "^6.0.1"
}
}