forked from 18F/trello-card-tracker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "bpa-trello-dashboard",
"version": "1.0.0",
"description": "An interface to interact with trello kanban lists",
"main": "cli.js",
"scripts": {
"start": "node server.js",
"test": "istanbul cover _mocha -- -R spec --compilers coffee:coffee-script/register && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18f/bpa-trello-dashboard.git"
},
"keywords": [
"trello",
"integration"
],
"author": "laura gerhardt",
"license": "ISC",
"bugs": {
"url": "https://github.com/18f/bpa-trello-dashboard/issues"
},
"homepage": "https://github.com/18f/bpa-trello-dashboard#readme",
"dependencies": {
"async": "^1.5.2",
"coffee-script": "^1.10.0",
"dotenv": "^2.0.0",
"instadate": "^0.1.7",
"js-yaml": "^3.5.2",
"minimalist": "^1.0.0",
"moment": "^2.11.2",
"moment-timezone": "^0.5.0",
"node-schedule": "^1.0.0",
"node-trello": "^1.1.2",
"q": "^1.4.1",
"request": "^2.69.0",
"underscore": "~1.8.3"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"codecov": "^1.0.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0"
}
}