-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "@nypl/nypl-streams-client",
"version": "2.0.0",
"description": "Internal NYPL client for reading/writing avro encoded streams",
"main": "index.js",
"scripts": {
"unit-test": "./node_modules/.bin/mocha --reporter spec",
"test": "./node_modules/.bin/standard --env mocha && npm run unit-test",
"build-jsdoc": "./node_modules/.bin/jsdoc2md lib/client.js > docs/usage.md"
},
"author": "@nonword",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-kinesis": "^3.609.0",
"@aws-sdk/client-kms": "^3.226.0",
"@nypl/nypl-data-api-client": "^2.0.0",
"avsc": "^5.0.2",
"loglevel": "^1.4.1",
"minimist": "^1.2.0"
},
"devDependencies": {
"@aws-sdk/credential-providers": "^3.609.0",
"chai": "4.0.2",
"chai-as-promised": "^7.1.2",
"dotenv": "^8.1.0",
"jsdoc-to-markdown": "^8.0.1",
"md5": "^2.2.1",
"mocha": "^10.6.0",
"sinon": "^4.0.1",
"standard": "^17.1.0"
},
"standard": {
"globals": [
"after",
"before",
"afterEach",
"beforeEach",
"describe",
"expect",
"it",
"xdescribe",
"xit",
"sinon"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NYPL-discovery/node-nypl-streams-client.git"
},
"bin": {
"nypl-streams": "./cli/nypl-streams.js"
},
"bugs": {
"url": "https://github.com/NYPL-discovery/node-nypl-streams-client/issues"
},
"homepage": "https://github.com/NYPL-discovery/node-nypl-streams-client#readme"
}