-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.19 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
{
"name": "@optio-labs/comms-bridge",
"version": "0.0.3",
"description": "The library implements a \"communications bridge\" between endpoints in a multi-node messaging network.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "node ./build/cli.js",
"start:dev": "nodemon",
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"build": "tsc --incremental",
"bw": "npm run build:watch",
"build:watch": "tsc --incremental --watch",
"prepublishOnly": "npm test && npm run clean && tsc",
"t": "npm run test",
"test": "jest --runInBand --passWithNoTests",
"tw": "npm run test:watch",
"test:watch": "jest --watch --runInBand --passWithNoTests"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^14.17.14",
"jest": "^26.6.3",
"nodemon": "^2.0.12",
"source-map-support": "0.5.19",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.4.2"
}
}