This repository has been archived by the owner on Aug 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 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
{
"name": "trello-card-tracker",
"version": "1.0.0",
"description": "An interface to interact with trello kanban lists",
"main": "cli.js",
"scripts": {
"start": "node server.js",
"lint": "eslint --fix '**/*.js'",
"test": "npm run lint && istanbul cover _mocha -- -R spec --compilers coffee:coffee-script/register && codecov",
"jsdoc": "jsdoc2md -d doc app/*.js > documentation.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18f/trello-card-tracker.git"
},
"keywords": [
"trello",
"integration"
],
"author": "laura gerhardt",
"license": "ISC",
"bugs": {
"url": "https://github.com/18f/trello-card-tracker/issues"
},
"homepage": "https://github.com/18f/trello-card-tracker#readme",
"engines": {
"node": "^6.1.0",
"npm": "^3.8.6"
},
"dependencies": {
"@18f/us-federal-holidays": "^1.1.0",
"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"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"codecov": "^1.0.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"istanbul": "^0.4.2",
"jsdoc": "^3.4.1",
"jsdoc-to-markdown": "^1.3.7",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0"
}
}