-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 KB
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
{
"name": "node-nats-streaming-buffered-client",
"version": "0.0.0",
"description": "",
"keywords": [],
"main": "dist/node-nats-streaming-buffered-client.js",
"typings": "dist/types/node-nats-streaming-buffered-client.d.ts",
"files": [
"dist"
],
"author": "Mark Doeswijk <mark@springtree.nl>",
"repository": {
"type": "git",
"url": "https://github.com/springtree/node-nats-streaming-buffered-client"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs",
"docs": "typedoc --out docs --target es5 --theme minimal --mode file src",
"test": "nyc ava",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"node-nats-streaming": "^0.2.2"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.17",
"ava": "^2.4.0",
"colors": "^1.4.0",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"lodash.camelcase": "^4.3.0",
"node-nats-streaming": "^0.2.6",
"nyc": "^14.1.1",
"prompt": "^1.0.0",
"replace-in-file": "^5.0.2",
"rimraf": "^3.0.0",
"rollup": "^1.27.13",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.25.3",
"semantic-release": "^15.13.31",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.15.5",
"typescript": "^3.7.3",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"CBuffer": "^2.0.0"
}
}