forked from zxol/airbnbapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "airbnbapijs",
"version": "0.10.4",
"description": "Unofficial airbnb.com REST API wrapper for node.js",
"main": "build/main.js",
"directories": {
"src": "src"
},
"scripts": {
"build": "npm run prettier && babel src -d build ",
"test": "npm run build && nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prettier": "prettier --write \"src/**/*.js\"",
"temp": "npm run build; node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zxol/airbnbapi.git"
},
"author": "zxol",
"license": "MIT",
"bugs": {
"url": "https://github.com/zxol/airbnbapi/issues"
},
"homepage": "https://github.com/zxol/airbnbapi#readme",
"dependencies": {
"request": "^2.85.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"dotenv": "^8.0.0",
"lodash": "^4.17.11",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"prettier": "^1.17.1"
}
}