-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "protobi-javascript-api",
"version": "1.2.1",
"description": "Protobi REST API library and CLI for Node.js",
"main": "js/protobi-rest-api.js",
"bin": {
"protobi": "./bin/cli.mjs"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "npm run test:unit",
"test:unit": "mocha 'test/unit/**/*.test.mjs'",
"test:integration": "mocha test/rest.js",
"test:all": "mocha",
"generate-methods": "node scripts/generate-methods.js",
"generate-docs": "node scripts/generate-docs.js",
"generate": "npm run generate-methods && npm run generate-docs",
"sync-to-public": "bash scripts/sync-to-public.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/protobi/protobi-javascript-api.git"
},
"author": "Pieter Sheth-Voss",
"license": "ISC",
"bugs": {
"url": "https://github.com/protobi/protobi-javascript-api/issues"
},
"homepage": "https://github.com/protobi/protobi-javascript-api#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"csv": "^6.0.4",
"form-data": "^4.0.5",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.12",
"lodash.merge": "^4.6.2",
"node-fetch": "^2.7.0",
"ora": "^7.0.1"
},
"devDependencies": {
"chai": "^6.2.1",
"dotenv": "^10.0.0",
"mocha": "^11.7.5",
"sinon": "^21.0.0"
}
}