This repository was archived by the owner on Dec 2, 2024. It is now read-only.
forked from sajari/sdk-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "@rentpath/sajari-sdk-node",
"version": "3.4.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Ben Hinchley <bhinchley@sajari.com>",
"license": "MIT",
"files": [
"README.md",
"LICENSE",
"dist/",
"generated/"
],
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"prebuild": "npm-run-all gen:useragent lint test",
"build": "tsc",
"fmt": "prettier --write --config .prettierrc.js \"{src/**/*,*.config,*.d,.*,package}.{js,ts,json}\"",
"lint": "tslint --fix -p tsconfig.json",
"type-check": "tsc --noEmit",
"pretest": "npm-run-all type-check",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"gen:proto": "node scripts/genproto",
"gen:useragent": "node scripts/genuseragent",
"docs": "typedoc ./src/index.ts --mode file --out ./docs --exclude \"**/*+(.test).ts\"",
"prepublishOnly": "npm-run-all build"
},
"dependencies": {
"@grpc/grpc-js": "1.2.7",
"debug": "^4.1.1",
"deepmerge": "^4.0.0",
"protobufjs": "^6.8.8"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/jest": "^24.0.15",
"globby": "^10.0.1",
"grpc-tools": "^1.8.0",
"jest": "^24.8.0",
"make-dir": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.3"
}
}