-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "quickbase",
"version": "6.0.0",
"description": "A lightweight, typed, promise-based Quickbase API, autogenerated from the OpenAPI spec",
"keywords": [
"QuickBase",
"quickbase",
"Quick Base",
"quick base",
"qb",
"api"
],
"homepage": "https://github.com/tflanagan/node-quickbase",
"bugs": {
"url": "https://github.com/tflanagan/node-quickbase/issues",
"email": "[email protected]"
},
"license": "Apache-2.0",
"author": {
"name": "Tristian Flanagan",
"url": "https://github.com/tflanagan",
"email": "[email protected]"
},
"maintainers": [],
"contributors": [],
"main": "./dist/quickbase.js",
"types": "./dist/quickbase.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/tflanagan/node-quickbase.git"
},
"scripts": {
"build": "ts-node ./src/code-generation/build.ts",
"cleanup": "rm -rf ./dist/quickbase* && rm -rf ./dist/tests",
"compile": "npm run cleanup && npm run generate && npm run build && npm run test && npm run docs",
"docs": "mv ./docs/_config.yml ./ && npx typedoc src/quickbase.ts && mv ./_config.yml ./docs/",
"generate": "ts-node ./src/code-generation/generate.ts",
"test": "npx ava"
},
"dependencies": {
"axios": "^1.6.8",
"debug": "^4.3.4",
"deepmerge": "^4.3.1",
"generic-throttle": "^3.1.0"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/debug": "^4.1.12",
"@types/node": "^20.12.7",
"ava": "^4.3.3",
"dotenv": "^16.4.5",
"esbuild": "^0.21.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"git": "git://github.com/tflanagan/node-quickbase.git"
}