forked from sorohan/stash-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "bitbucket-server-nodejs",
"description": "Provides access to some of Bitbucket-Server's APIs.",
"tags": [
"bitbucket-server",
"bitbucket",
"stash",
"atlassian",
"rest",
"api"
],
"version": "2.12.1",
"author": "Mark Massoud <npm@markmssd.com>",
"repository": {
"type": "git",
"url": "https://github.com/markmssd/bitbucket-server-nodejs.git"
},
"bugs": {
"url": "https://github.com/markmssd/bitbucket-server-nodejs/issues"
},
"license": "MIT",
"engines": {
"node": ">= 4"
},
"main": "index.js",
"dependencies": {
"async": "~2.1.2",
"lodash": "^4.16.6",
"query-string": "^4.2.3",
"request": "^2.78.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"sinon": "^1.15.4"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"start": "mocha --watch",
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec -t 5000"
}
}