forked from bhushankummar/trello-node-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.76 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
{
"name": "trello-node-api",
"version": "0.0.9",
"description": "Trello Node API wrapper",
"keywords": [
"node-trello",
"node-trello-api",
"trello-node-api",
"trello-api",
"trello-sdk",
"trelloo-client",
"trello-node",
"trello",
"trello-actions",
"trello-boards",
"trello-cards",
"trello-checklists",
"trello-enterprises",
"trello-labels",
"trello-lists",
"trello-members",
"trello-notifications",
"trello-organizations",
"trello-webhooks",
"trello-typescript",
"trello-es6"
],
"homepage": "https://github.com/bhushankumarl/trello-node-api",
"author": "Bhushankumar Lilapara<[email protected]>",
"contributors": [
"Bhushankumar Lilapara ([email protected])"
],
"repository": {
"type": "git",
"url": "https://github.com/bhushankumarl/trello-node-api"
},
"bugs:": "https://github.com/bhushankumarl/trello-node-api/issues",
"engines": {
"node": ">=4"
},
"main": "lib/trello-node-api",
"dependencies": {
"bluebird": "^3.7.2",
"debug": "^4.1.1",
"lodash.isplainobject": "^4.0.6",
"qs": "~6.9.1",
"safe-buffer": "^5.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"chai": "^4.2.0",
"chai-as-promised": "~7.1.1",
"mocha": "^7.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"license": "MIT",
"scripts": {
"lint": "tsc index.d.ts",
"test.mocha": "npm run lint; mocha -r ts-node/register test/**/*.spec.ts"
}
}