-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
63
64
65
66
67
68
69
70
71
72
{
"name": "@vertexvis/api-client-node",
"version": "0.23.4",
"description": "The Vertex REST API client for Node.js.",
"license": "MIT",
"author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
"homepage": "https://github.com/Vertexvis/vertex-api-client-node#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Vertexvis/vertex-api-client-node.git"
},
"bugs": {
"url": "https://github.com/Vertexvis/vertex-api-client-node/issues"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"files": [
"dist/",
"!dist/**/__tests__",
"LICENSE"
],
"keywords": [
"vertexvis",
"api-client",
"typescript"
],
"dependencies": {
"axios": "^1.6.4",
"p-limit": "^3"
},
"devDependencies": {
"@types/jest": "^27.0",
"@types/node": "^16",
"@vertexvis/eslint-config-vertexvis-typescript": "^0.5.1",
"eslint": "^8.49.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"pinst": "^2.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typedoc": "^0.22",
"typescript": "4.5.x"
},
"scripts": {
"build": "tsc --project tsconfig.json && tsc --project tsconfig-esm.json",
"clean": "rm -rf dist/",
"clean-build": "yarn clean && yarn build",
"format": "prettier --write './**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|mdx|html|css)'",
"generate": "./scripts/generate.sh",
"generate:docs": "typedoc --tsconfig tsconfig.json",
"lint": "eslint . --ext .ts",
"pre-commit": "yarn lint && yarn format",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"version": "./scripts/version.sh",
"push:version": "./scripts/push_version.sh",
"test": "jest",
"test:func": "yarn clean-build && node dist/functional-test.js",
"verify": "yarn clean-build && yarn test --coverage && node dist/cjs/verify.js",
"watch": "jest --watch"
}
}