-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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
{
"name": "@nypl/nypl-data-api-client",
"version": "2.0.0",
"description": "Simple client for interacting with NYPL's internal data api",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/standard && ./node_modules/.bin/mocha"
},
"author": "@nonword",
"license": "ISC",
"dependencies": {
"@nypl/nypl-core-objects": "^3.0.0",
"avsc": "^5.7.7",
"diff": "^3.5.0",
"dotenv": "^16.4.5",
"loglevel": "^1.9.1",
"loglevel-plugin-prefix": "^0.5.3",
"minimist": "^1.2.8",
"node-cache": "^5.1.2",
"oauth": "^0.10.0"
},
"devDependencies": {
"chai": "^4.1.2",
"jsdoc-to-markdown": "^8.0.1",
"mocha": "^10.4.0",
"prompts": "^2.4.2",
"sinon": "^17.0.1",
"standard": "^17.1.0"
},
"files": [
"bin/",
"index.js",
"lib/client.js",
"lib/errors.js"
],
"standard": {
"globals": [
"expect",
"assert",
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"directories": {
"test": "test"
},
"bin": {
"nypl-data-api": "./bin/nypl-data-api.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NYPL-discovery/node-nypl-data-api-client.git"
},
"bugs": {
"url": "https://github.com/NYPL-discovery/node-nypl-data-api-client/issues"
},
"homepage": "https://github.com/NYPL-discovery/node-nypl-data-api-client#readme"
}