-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 KB
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": "airbnb-private-api",
"version": "1.0.7",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"homepage": "https://github.com/drawrowfly/airbnb-private-api",
"bugs": "https://github.com/drawrowfly/airbnb-private-api/issues",
"repository": {
"type": "git",
"url": "https://github.com/drawrowfly/airbnb-private-api.git"
},
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && tsc && prettier --config ./.prettierrc.js --write './lib/**/*.js'",
"format": "prettier --config ./.prettierrc.js --write './src/**/*.ts'",
"lint": "eslint ./src/**/*.ts",
"test": "jest --coverage --verbose"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"lodash": "^4.17.15",
"pretty-error": "^2.1.1",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.45",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^25.2.0",
"ts-node-dev": "^1.0.0-pre.44",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.5"
}
}