-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "@zhttp/monorepo",
"version": "1.1.3",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/evertdespiegeleer/zhttp.git"
},
"license": "MIT",
"author": "Evert De Spiegeleer",
"type": "module",
"workspaces": [
"packages/errors",
"packages/*",
"docs"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"lint": "eslint 'packages/*/src/**/*.ts' 'examples/*.ts'",
"lint:fix": "npm run lint -- --fix",
"prepare": "npx husky install && cp ./readme.md ./packages/core || true",
"sync:readme": "npx embedme ./readme.md",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.18.1",
"devmoji": "^2.3.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"ts-node": "^10.9.2",
"typescript": "^4.4.4"
},
"engines": {
"node": "^20.10.x",
"npm": "^10.2.3"
}
}