forked from sebarmeli/bamboo-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1021 Bytes
/
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
{
"name": "bamboo-api",
"version": "0.0.7",
"description": "Node wrapper around Atlassian Bamboo API",
"main": "./lib/bamboo.js",
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"bin": {
"bamboo-api": "./bin/bamboo-api"
},
"dependencies": {
"request": "~2.11.4",
"underscore": "~1.4.2",
"commander": "~1.0.5"
},
"devDependencies": {
"mocha": "1.20.1",
"should": "~1.2.1",
"nock": "8.0.0"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./test"
},
"repository": {
"type": "git",
"url": "https://github.com/sebarmeli/bamboo-api"
},
"keywords": [
"bamboo",
"rest-api",
"ci"
],
"engine": {
"node": "~0.6.x"
},
"author": "Sebastiano Armeli-Battana <[email protected]>",
"license": [
{
"type": "MIT",
"url": "http://github.com/sebarmeli/bamboo-api/raw/master/LICENSE"
}
],
"contributors" : ["Pavlo Voznenko <[email protected]> (https://twitter.com/pvoznenko/)"]
}