-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "@chalupajs/examples",
"private": true,
"version": "1.7.0",
"description": "Service framework",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"clean": "rimraf ./dist ./coverage ./generated-docs ./junit.xml",
"compile": "echo true",
"docs": "typedoc --out generated-docs src",
"lint": "echo TODO",
"lint:fix": "echo TODO",
"test": "echo TODO",
"prepublishOnly": "npm run clean && npm run compile"
},
"repository": {
"type": "git",
"url": "git@github.com:chalupajs/chalupa.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "16.10.5",
"rimraf": "3.0.2",
"ts-node": "10.2.1",
"typedoc": "0.21.0",
"typescript": "4.3.3",
"why-is-node-running": "^2.2.0"
},
"dependencies": {
"@chalupajs/communication-darcon": "workspace:*",
"@chalupajs/interface": "workspace:*",
"@chalupajs/logger-pino": "workspace:*",
"@chalupajs/logger-tslog": "workspace:*",
"@chalupajs/service": "workspace:*",
"@chalupajs/test-framework": "workspace:*",
"reflect-metadata": "0.1.13"
}
}