forked from adunkman/node-trello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "node-trello",
"description": "Node wrapper for Trello's HTTP API.",
"keywords": [
"http",
"trello",
"api",
"web-service"
],
"version": "1.3.0",
"author": "Luca Matteis <[email protected]>",
"contributors": [
{
"name": "Andrew Dunkman",
"email": "[email protected]"
}
],
"dependencies": {
"oauth": "^0.9.15",
"request": "^2.81.0"
},
"devDependencies": {
"blanket": "^1.2.3",
"mocha": "^3.4.2",
"should": "^5.2.0",
"travis-cov": "^0.2.5"
},
"config": {
"travis-cov": {
"threshold": 75
},
"blanket": {
"pattern": "//^((?!/node_modules/)(?!/test/).)*$/ig"
}
},
"repository": {
"type": "git",
"url": "http://github.com/adunkman/node-trello.git"
},
"bugs": {
"url": "http://github.com/adunkman/node-trello/issues"
},
"engines": {
"node": ">= 4"
},
"main": "./index",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec && ./node_modules/.bin/mocha --require blanket --reporter travis-cov",
"test-cov-report": "./node_modules/.bin/mocha --require blanket --reporter html-cov > coverage.html && open coverage.html"
}
}