-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
63
{
"name": "qb-table",
"private": false,
"version": "5.0.23",
"description": "A lightweight abstraction layer for Quick Base",
"keywords": [
"QuickBase",
"quickbase",
"Quick Base",
"quick base",
"qb",
"api",
"QBTable",
"qbtable",
"qb-table"
],
"homepage": "https://github.com/tflanagan/node-qb-table",
"bugs": {
"url": "https://github.com/tflanagan/node-qb-table/issues",
"email": "[email protected]"
},
"license": "Apache-2.0",
"author": {
"name": "Tristian Flanagan",
"url": "https://github.com/tflanagan",
"email": "[email protected]"
},
"maintainers": [],
"contributors": [],
"main": "./dist/qb-table.js",
"types": "./dist/qb-table.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:tflanagan/node-qb-table.git"
},
"scripts": {
"build": "ts-node ./src/build.ts",
"cleanup": "rm -rf ./dist/*",
"compile": "npm run cleanup && npm run build && npm run test && npm run docs",
"docs": "mv ./docs/_config.yml ./ && npx typedoc src/qb-table.ts && mv ./_config.yml ./docs/",
"test": "npx ava"
},
"dependencies": {
"deepmerge": "^4.2.2",
"qb-field": "5.0.23",
"qb-record": "5.0.23",
"qb-report": "5.0.23",
"quickbase": "5.0.23",
"rfc4122": "^1.0.6"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/browserify": "^12.0.37",
"@types/node": "^18.7.23",
"ava": "^4.3.3",
"browserify": "^17.0.0",
"dotenv": "^16.0.2",
"minify": "^7.2.2",
"typedoc": "^0.23.15",
"typescript": "^4.8.4"
},
"git": "[email protected]:tflanagan/node-qb-table.git"
}