-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "node-uber",
"version": "2.0.0",
"description": "A Node.js wrapper for Uber API",
"main": "index.js",
"scripts": {
"test": "gulp"
},
"repository": {
"type": "git",
"url": "git://github.com/shernshiou/node-uber.git"
},
"author": {
"name": "Shern Shiou Tan",
"email": "shernshiou@gmail.com",
"url": "http://blog.shernshiou.com"
},
"contributors": [
{
"name": "Alexander Graebe",
"email": "alex.graebe@gmail.com",
"url": "https://twitter.com/agraebe"
}
],
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.7",
"node-geocoder": "^3.22.0",
"oauth": "^0.9.15",
"proxy-agent": "^2.0.0",
"request": "^2.79.0"
},
"devDependencies": {
"chai": "^4.1.2",
"codeclimate-test-reporter": "^0.5.0",
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-istanbul": "^1.1.2",
"gulp-mocha": "^3.0.1",
"gulp-util": "^3.0.8",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"nock": "^9.0.14",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0",
"superagent": "^3.6.0"
},
"engines": {
"node": ">6.10",
"npm": ">3.10.10"
}
}