-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.05 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
{
"name": "@makeomatic/deploy",
"version": "0.0.0-development",
"description": "Common build and deploy tasks wrapped in a cli",
"repository": {
"type": "git",
"url": "https://github.com/makeomatic/deploy"
},
"author": "Vitaly Aminev <v@makeomatic.ca>",
"license": "MIT",
"scripts": {
"lint": "eslint ./bin",
"test": "npm run lint && npm run test:http && npm run test:exec",
"test:http": "./bin/cli.mjs test run --http",
"test:exec": "./bin/cli.mjs test run",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"publishConfig": {
"access": "public"
},
"engine": {
"node": ">= 20.10.0"
},
"type": "module",
"devDependencies": {
"c8": "^10.1.2",
"eslint": "^8.57.1",
"eslint-config-makeomatic": "^6.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-unicorn": "^55.0.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@commitlint/cli": "^19.5.0",
"@fastify/compress": "^8.0.1",
"@sinclair/typebox": "^0.33.12",
"@types/node": "^22.6.1",
"chrome-launcher": "^1.1.2",
"chrome-remote-interface": "^0.33.2",
"cosmiconfig": "^9.0.0",
"death": "^1.1.0",
"debug": "^4.3.7",
"execa": "^9.4.0",
"fastify": "^5.0.0",
"get-port": "^7.1.0",
"glob": "^11.0.0",
"husky": "~9.1.6",
"hyperid": "^3.3.0",
"is": "^3.3.0",
"js-yaml": "^4.1.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"npm-path": "^2.0.4",
"p-limit": "^6.1.0",
"pino": "^9.4.0",
"read-pkg": "^9.0.1",
"rimraf": "^6.0.1",
"semantic-release": "24.1.1",
"serialize-error": "^11.0.3",
"split2": "^4.2.0",
"strip-final-newline": "^4.0.0",
"tempy": "^3.1.0",
"undici": "^6.19.8",
"yargs": "^17.7.2"
},
"bin": {
"mdep": "./bin/cli.mjs",
"mdep-runner": "./bin/runner.mjs"
},
"files": [
"bin/",
"run/",
"templates/",
"scripts/",
".husky/*",
"!.husky/_",
".releaserc.json",
".commitlintrc.cjs"
]
}