forked from Mr-Wallet/node-bitbucket-v2
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
62
63
64
65
66
67
{
"name": "bitbucket-api-v2",
"version": "0.6.2",
"description": "Wrapper for the BitBucket API v2, the version required to use OAuth2. Includes support for XHR requests.",
"homepage": "https://github.com/kristianmandrup/bitbucket-api-v2.git",
"main": "src/index.js",
"author": "Kristian Mandrup <kmandrup@gmail.com",
"scripts": {
"lint": "eslint ./src --quiet",
"test": "nyc ava",
"build:prod": "webpack --progress --colors --display-error-details --env=prod",
"build:dev": "webpack --progress --colors --display-error-details --env=dev"
},
"repository": {
"type": "git",
"url": "http://github.com/kristianmandrup/bitbucket-api-v2.git"
},
"engine": [
"node >=7.0.0"
],
"dependencies": {
"lodash": "^4.17.4",
"oauth": "^0.9.15",
"superagent": "^3.7.0",
"underscore.string": "^3.3.4",
"xhr": "^2.4.0",
"bitbucket-auth": "github:kristianmandrup/bitbucket-auth"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.26.0",
"babili": "^0.1.4",
"babili-webpack-plugin": "^0.1.2",
"eslint": "^4.9.0",
"express": "^4.16.2",
"generic-test-generator": "github:kristianmandrup/generic-test-generator",
"nock": "^9.0.22",
"nyc": "^11.2.1",
"sinon": "^4.0.1",
"supertest": "^3.0.0",
"webpack": "^3.8.1",
"webpack-cli": "^2.1.2",
"webpack-merge": "^4.1.0"
},
"ava": {
"files": [
"test/**/*.js"
],
"concurrency": 1,
"failFast": true,
"failWithoutAssertions": false,
"tap": true,
"powerAssert": false,
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"license": "MIT"
}