-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "@oas-tools/commons",
"version": "1.0.2",
"type": "commonjs",
"description": "Utility library for the development of new features and modules for oas-tools project",
"author": "ISA Group, University of Seville",
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"files": [
"dist",
"schemas",
"typings"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc && cp src/index.mjs dist/index.mjs && printf 'export * from \"../typings\";' >> dist/index.d.ts",
"lint": "eslint src --ext .mjs --ext .js",
"format": "npm run lint -- --fix"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/js-yaml": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"openapi-types": "^12.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
"js-yaml": "^4.1.0",
"winston": "^3.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oas-tools/oas-commons.git"
}
}