-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·62 lines (62 loc) · 1.32 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
{
"name": "preon",
"description": "a smaller nodejs micro-service framework",
"private": true,
"workspaces": [
"packages/*",
"example/*"
],
"scripts": {
"build": "lerna run build --stream",
"clean": "lerna run clean --parallel",
"test:type": "lerna run test:type --stream",
"test": "lerna run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/preonJs/preon.git"
},
"keywords": [
"server",
"framework",
"server-framework",
"microservice",
"micro-service",
"koa",
"express",
"eggjs",
"docker"
],
"author": "yeliex <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/preonJs/preon/issues"
},
"homepage": "https://github.com/preonJs/preon#readme",
"dependencies": {
"chai": "^4.3.6",
"lerna": "^4.0.0",
"mocha": "^10.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/debug": "^4.1.7",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.32",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.10",
"husky": "^4.3.8"
},
"engines": {
"node": ">=14.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}