-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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": "@freshworks/api-sdk",
"version": "0.3.0",
"description": "Node.js SDK for Freshworks HTTP APIs",
"engines": {
"node": ">=12.x"
},
"files": [
"/dist"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build:client": "./codegen/generate.sh --generate",
"build:docs": "typedoc && vuepress build docs",
"docs:dev": "vuepress dev docs",
"build:lib": "rm -rf dist && tsc",
"build": "npm run build:lib && npm run build:docs",
"start": "tsc --watch",
"lint": "eslint .",
"test:unit": "jest --coverage",
"test": "npm run test:unit",
"format": "prettier -w .",
"clean": "rm -rf coverage/ dist/",
"dopublish": "npm publish --access public",
"dopublish-dry-run": "npm publish --access public --dry-run"
},
"author": "Freshworks Inc",
"license": "MIT",
"homepage": "https://developers.freshworks.com/api-sdk/",
"repository": {
"type": "git",
"url": "https://github.com/freshworks/freshworks-api-sdk.git"
},
"keywords": [
"freshworks",
"freshteam",
"api-client"
],
"dependencies": {
"superagent": "^8.0.6"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@vuepress/plugin-search": "^2.0.0-beta.59",
"eslint": "^8.0.1",
"jest": "28.1.3",
"nock": "^13.1.4",
"prettier": "^2.3.2",
"ts-jest": "^28.0.5",
"typedoc": "^0.22.11",
"typescript": "^4.3.5",
"vuepress": "^2.0.0-beta.59"
},
"jest": {
"verbose": true,
"preset": "ts-jest/presets/js-with-ts"
}
}