-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.27 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
84
85
86
87
{
"name": "@comake/standard-sdk-js",
"version": "2.3.0",
"description": "An open source SDK to integrate and interact with any API",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"jest": "jest --coverage",
"lint": "eslint . --cache --ignore-path .gitignore --max-warnings 0",
"test": "npm run test:ts && npm run jest",
"test:ts": "tsc -p test --noEmit",
"test:integration": "jest --coverageReporters text-summary -- test/integration",
"test:unit": "jest --config=./jest.coverage.config.js test/unit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comake/standard-sdk-js.git"
},
"keywords": [
"skl",
"linked-data",
"rdf",
"jsonld",
"sdk",
"standard-sdk",
"unified-sdk",
"nodejs",
"api",
"openapi",
"openapi3",
"rest",
"rest-api",
"rest-client",
"api-client",
"javascript",
"typescript",
"js-sdk"
],
"author": {
"name": "Adler Faulkner",
"email": "adler@comake.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/comake/standard-sdk-js/issues"
},
"homepage": "https://github.com/comake/standard-sdk-js#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"files": [
"dist"
],
"dependencies": {
"@comake/openapi-operation-executor": "^0.11.3",
"@comake/skl-js-engine": "^0.11.1",
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"json-schema-to-ts": "^2.9.2"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.4.0",
"axios": "^0.27.2",
"eslint": "^8.31.0",
"eslint-config-es": "4.1.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-toolbelt": "^9.6.0",
"typescript": "^5.1.0"
}
}