forked from nats-io/node-nats-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1013 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
37
38
39
40
41
42
43
{
"name": "node-nats-examples",
"version": "1.0.0",
"description": "node-nats documentation examples",
"main": "index.js",
"scripts": {
"test": "tsc && ava --verbose -T 15000",
"debugtest": "tsc && node node_modules/.bin/ava --verbose -T 6500000 -m",
"clean": "rm -Rf build/",
"lint": "standard './src/*.js'",
"fmt": "standard --fix './src/*.js'"
},
"engines": {
"node": ">= 13.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com//nats-io/node-nats-examples"
},
"author": "The NATS Authors",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"@types/node": "^13.13.1",
"ava": "^3.7.1",
"eslint": "^6.8.0",
"nats": "^1.4.8",
"nuid": "^1.1.4",
"standard": "^14.3.3",
"ts-nkeys": "^1.0.16",
"typescript": "^3.8.3"
},
"ava": {
"failFast": false,
"require": [
"./build/helpers/ava_fix.js"
],
"files": [
"./build/**/*.js",
"!./build/helpers/*.js"
]
}
}