-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 864 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
{
"name": "cheapest-airfare-viv",
"version": "1.0.0",
"description": "Get the cheapest airfare of a VivaAerobus flight",
"license": "MIT",
"repository": "alebelcor/cheapest-airfare-viv",
"author": {
"name": "Alejandro Beltrán",
"email": "alebelcor@gmail.com",
"url": "https://github.com/alebelcor"
},
"private": true,
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "clinton && xo && ava",
"watch": "ava --watch"
},
"files": [
"index.js",
"lib"
],
"dependencies": {
"airports": "^1.0.0",
"got": "^6.7.1",
"moment": "^2.17.1",
"ua-string": "^1.0.0"
},
"devDependencies": {
"ava": "*",
"clinton": "^0.11.0",
"is-plain-obj": "^1.1.0",
"sinon": "^1.17.7",
"sinon-as-promised": "^4.0.2",
"xo": "*"
},
"xo": {
"space": true
}
}