-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.63 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
74
75
76
77
78
79
80
81
82
83
{
"name": "lens-platform-sdk",
"version": "14.7.1",
"description": "Lens Platform Client SDK",
"engines": {
"node": ">=14 <=20"
},
"files": [
"dist/**/*"
],
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"main": "dist/cjs/index.js",
"scripts": {
"test": "npm run check:type && npm run test:unit && npm run test:e2e",
"test:unit": "jest",
"test:unit:watch": "jest --watchAll",
"test:e2e": "jest --runInBand --config ./jest.integration-test.config.js",
"lint": "npm run eslint && npm run prettier",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"eslint": "eslint --ext ts,tsx --max-warnings=0 \"{src,test}/**/*.ts\"",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "prettier --check \"{src,test}/*.{js,ts,tsx}\"",
"prettier:fix": "prettier --write \"{src,test}/*.{js,ts,tsx}\"",
"check:type": "tsc -p tsconfig.json --noEmit",
"build": "npm run build:dist",
"build:dist": "rm -rf dist && run-p build:cjs build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lensapp/lens-platform-sdk.git"
},
"author": "Mirantis Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/lensapp/lens-platform-sdk/issues"
},
"homepage": "https://github.com/lensapp/lens-platform-sdk#readme",
"devDependencies": {
"@lensapp/eslint-config": "^0.3.12",
"@lensapp/prettier-config": "^0.3.7",
"@swc/core": "^1.2.115",
"@swc/jest": "^0.2.11",
"@types/jest": "^29.2.0",
"@types/nock": "^11.1.0",
"@types/simple-oauth2": "^4.1.0",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"dotenv": "^10.0.0",
"eslint": "8.47.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "0.2.17",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.2.1",
"nock": "^13.2.1",
"npm-run-all": "^4.1.5",
"prettier": "2.8.1",
"regenerator-runtime": "^0.13.9",
"simple-oauth2": "^4.2.0",
"type-fest": "^3.4.0",
"typescript": "5.0.4"
},
"dependencies": {
"axios": "^1.6.7",
"jwt-decode": "^3.1.2",
"pino": "^7.5.0",
"zod": "^3.21.4"
}
}