-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
73 lines (73 loc) · 1.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "platformsh-client",
"version": "0.2.35",
"description": "Isomorphic Javascript library for accessing the Platform.sh API",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"test": "npm run test-web && npm run test-node",
"test-web": "vitest --environment=jsdom run",
"test-node": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"precommit": "lint-staged && npm run build",
"prepush": "npm test",
"typecheck": "npx tsc --noEmit"
},
"devDependencies": {
"@types/atob": "^2.1.2",
"@types/detect-node": "^2.0.0",
"@types/event-source-polyfill": "^1.0.2",
"@types/is-url": "^1.2.30",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"fetch-mock": "^11.1.3",
"husky": "^0.14.3",
"jsdom": "^25.0.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.6",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"atob": "^2.1.2",
"detect-node": "^2.0.4",
"email-validator": "^1.0.7",
"event-source-polyfill": "^1.0.31",
"is-url": "^1.2.2",
"oauth2-popup-flow": "^1.1.0",
"parse_url": "^0.1.1",
"slugify": "^1.3.4"
},
"overrides": {
"tough-cookie": "5.0.0-rc.4",
"whatwg-url": "14.x"
}
}