-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
49 lines (49 loc) · 1 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
{
"name": "bamboo-api",
"version": "0.0.9",
"description": "Node wrapper around Atlassian Bamboo API",
"main": "./lib/bamboo.js",
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"bin": {
"bamboo-api": "./bin/bamboo-api"
},
"dependencies": {
"commander": "^2.9.0",
"request": "^2.74.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"mocha": "^3.0.2",
"nock": "8.0.0",
"should": "^11.1.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/)"
]
}