-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.74 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
{
"name": "uber-direct",
"version": "0.1.8",
"description": "The Uber Direct JS SDK is an npm package that allows developers to easily interact with the Uber Direct API.",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": "./dist/src/index.js",
"./auth": "./dist/src/auth/index.js",
"./deliveries": "./dist/src/deliveries/index.js",
"./organizations": "./dist/src/organizations/index.js"
},
"files": [
"dist"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"lint": "eslint . --ext .ts",
"types": "./scripts/generateTypes.sh",
"test": "jest --coverage",
"test:coverage": "npm test -- --coverage",
"test:snapshots": "npm test -- -u",
"test:badges": "npm run test:coverage && jest-coverage-badges --output badges",
"test:all": "npm run test:coverage && npm run test:badges",
"test:integration": "npx playwright test",
"test:integration:ui": "npx playwright test --ui",
"test:integration:report": "npx playwright show-report"
},
"author": "Uber",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@playwright/test": "^1.41.2",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.1.2",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.8.3",
"ts-jest": "^29.2.4",
"typescript": "^4.9.4"
}
}