This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
87 lines (87 loc) · 2.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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ts-nats",
"version": "1.2.15",
"description": "Typescript Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
"keywords": [
"nats",
"messaging",
"pubsub",
"publish",
"subscribe",
"queue",
"distributed",
"queueing"
],
"homepage": "https://nats.io",
"repository": {
"type": "git",
"url": "[email protected]:nats-io/nats.ts.git"
},
"bugs": {
"url": "https://github.com/nats-io/nats.ts/issues"
},
"license": "Apache-2.0",
"private": false,
"author": {
"name": "The NATS Authors"
},
"contributors": [],
"main": "./index.js",
"types": "./",
"scripts": {
"prepare": "npm run build",
"build": "npm run clean && tsc && npm run copy",
"clean": "rm -Rf lib/ || true && rm -Rf .nyc_output/ || true && rm -Rf coverage/ || true",
"copy": "cp -R ./lib/src ./dist && rm -Rf lib/ && mv dist lib",
"cover:html": "nyc report --reporter=html && open coverage/index.html",
"cover:coveralls": "nyc report --reporter=lcovonly && cat ./coverage/lcov.info | coveralls",
"pack": "npm run build && npm pack",
"debugtest": "tsc && cp package.json lib/package.json && node node_modules/.bin/ava --verbose -T 6500000 --match",
"test": "tsc && cp package.json lib/package.json && nyc ava --verbose -T 15000",
"doc": "node_modules/.bin/typedoc --options ./typedoc.json && touch ./docs/.nojekyll"
},
"engines": {
"node": ">= 8.17.0"
},
"dependencies": {
"nuid": "^1.1.4",
"ts-nkeys": "^1.0.16"
},
"devDependencies": {
"@types/node": "^13.13.4",
"acorn": "^7.1.1",
"ava": "^3.8.1",
"coveralls": "^3.1.0",
"nyc": "^15.0.1",
"typedoc": "^0.17.6",
"typescript": "^3.8.3"
},
"typings": "./lib/nats.d.ts",
"ava": {
"failFast": false,
"require": [
"./lib/test/helpers/ava_fix.js"
],
"files": [
"./lib/test/**/*.js",
"!./lib/test/helpers/**/*.js"
]
},
"nyc": {
"extension": [
".ts",
".js"
],
"include": [
"src/**/*.ts",
"lib/src/**/*.js"
],
"exclude": [
"lib/test/**",
"examples/**",
"benchmark/**"
],
"sourceMap": true,
"all": true
}
}