-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
{
"name": "@kever/monorepo",
"private": true,
"version": "0.27.0",
"module": "true",
"description": "A lightweight inversion of control container for Node.js apps powered by TypeScript and Koa runtime",
"scripts": {
"build": "rimraf packages/*/dist && pnpm -r --filter=./packages/* run build",
"format": "eslint --fix . --ext .js,.ts",
"test": "mocha --require ts-node/register ./packages/**/test/*.spec.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add ./CHANGELOG.md",
"ci": "bumpp package.json packages/*/package.json --commit --push --tag",
"release": "run-s build ci",
"docs": "rimraf docs && typedoc ./packages/*/src/index.ts"
},
"publishConfig": {
"directory": "packages/*"
},
"devDependencies": {
"@commitlint/cli": "^8.3.6",
"@commitlint/config-conventional": "^8.3.6",
"@microsoft/api-extractor": "^7.36.3",
"@types/mocha": "^7.0.2",
"@types/node": "^14.18.54",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"bumpp": "^7.2.0",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.46.0",
"esmo": "^0.14.1",
"execa": "^4.1.0",
"lint-staged": "^10.5.4",
"mocha": "^7.2.0",
"npm-run-all": "^4.1.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"supertest": "^4.0.2",
"typedoc": "^0.25.12",
"typescript": "^5.1.6",
"unbuild": "^1.2.1"
},
"lint-staged": {
"*.{ts,js}": [
"npm run format"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=14"
}
}