-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.46 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
{
"name": "@superfaceai/one-sdk",
"version": "2.4.2",
"description": "OneSDK is a universal API client which provides an unparalleled developer experience for every HTTP API",
"license": "MIT",
"author": "Superface Team <[email protected]>",
"repository": "https://github.com/superfaceai/one-sdk-js.git",
"homepage": "https://superface.ai",
"bugs": {
"url": "https://github.com/superfaceai/one-sdk-js/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=14"
},
"keywords": [
"api",
"client",
"http",
"sdk",
"integration",
"superface"
],
"main": "dist/index.js",
"source": "src/index.ts",
"module": "dist/superface.modern.js",
"unpkg": "dist/superface.umd.js",
"browser": "dist/superface.umd.js",
"types": "dist/index.d.ts",
"private": false,
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc -p tsconfig.release.json --outDir dist",
"check_dependencies": "node scripts/check_dependencies.js",
"clean": "rimraf dist/",
"format:fix": "prettier --write ./src",
"format": "prettier -c ./src",
"lint:fix": "yarn lint --fix",
"lint": "eslint src/",
"prebuild": "yarn clean",
"prepack": "yarn build",
"prepush": "yarn build && yarn test:clean && yarn lint && yarn format",
"test:base": "jest --testPathIgnorePatterns 'event-adapter.test.ts$'",
"test:clean": "jest --clear-cache && yarn test",
"test:long": "jest --testPathPattern 'event-adapter.test.ts$'",
"test": "jest",
"watch": "yarn build --watch"
},
"devDependencies": {
"@superfaceai/parser": "^2.1.0",
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.1",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.0.0",
"mockttp": "^3.2.3",
"prettier": "2.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "4.3.5"
},
"dependencies": {
"@superfaceai/ast": "1.3.0",
"abort-controller": "^3.0.0",
"debug": "^4.3.2",
"form-data": "^4.0.0",
"node-fetch": "^2",
"vm2": "^3.9.7"
}
}