forked from mheap/trello-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "trello-cli",
"version": "0.3.0",
"description": "Trello CLI tool",
"main": "index.js",
"scripts": {
"test": "mocha test/* test/**/*",
"lint": "eslint lib src bin",
"lint-fix": "eslint --fix lib src bin"
},
"repository": {
"type": "git",
"url": "http://github.com/mheap/trello-cli"
},
"keywords": [
"trello",
"cli"
],
"author": "Michael Heap <[email protected]>",
"contributors": [
"Vinyl Darkscratch-Kazotetsu <[email protected]> (http://www.vinyldarkscratch.info)",
"Marek Skrobacki <[email protected]>",
"Simon Kittle <[email protected]>",
"Sylvain Just (http://github.com/syjust)"
],
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-plugin-prettier": "^2.0.1",
"husky": "^0.13.3",
"mocha": "^8.0.1",
"prettier": "^1.1.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.9.0"
},
"dependencies": {
"async": "~0.2.9",
"bottleneck": "^2.18.1",
"colors": "~0.6.2",
"limiter": "^1.1.0",
"nconf": "^0.10.0",
"node-trello": "~1.1",
"nomnom": "*",
"prompt": "1.0.0",
"readline": "~1.3.0",
"shell-quote": "*",
"term-list": "~0.2.0",
"underscore": "~1.5.1",
"winston": "~2.1.1"
},
"bin": {
"trello": "./bin/trello"
}
}