forked from bisect-pt/bisect-core-ts-be
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 826 Bytes
/
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
{
"name": "@bisect/bisect-core-ts-be",
"version": "0.1.0",
"description": "Core functionality for backends in Typescript",
"author": "Bisect Lda. <[email protected]> (www.bisect.pt)",
"contributors": [
{
"name": "Pedro Ferreira",
"email": "[email protected]"
}
],
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"**/*"
],
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./dist",
"compile": "tsc"
},
"devDependencies": {
"@types/amqplib": "^0.5.16",
"@types/jest": "^26.0.15",
"@types/node": "^14.11.2",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"dependencies": {
"amqplib": "^0.6.0",
"@bisect/bisect-core-ts": "^0.1.0"
}
}