-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "@jshmrtn/openapi-simplifier",
"version": "1.3.0-alpha.2",
"description": "OpenAPI Schema simplification to help with code generators",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "rollup -c --configPlugin typescript && chmod 755 ./bin/openapi-simplifier.cjs",
"test": "npm run test:lint && npm run test:types && npm run test:unit",
"test:lint": "eslint .",
"test:lint:fix": "eslint --fix .",
"test:types": "tsc --noEmit",
"test:unit": "jest",
"prepublishOnly": "npm run test && npm run build"
},
"author": {
"name": "JOSHMARTIN GmbH",
"email": "[email protected]",
"url": "https://joshmartin.ch"
},
"contributors": [
{
"name": "Jonatan Männchen",
"email": "[email protected]",
"url": "https://maennchen.dev"
}
],
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.6.2",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.1.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.2",
"rollup": "^3.28.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"bin": {
"openapi-simplifier": "bin/openapi-simplifier.cjs"
},
"dependencies": {
"commander": "^11.0.0",
"openapi3-ts": "^4.1.2",
"yaml": "^2.3.1"
},
"publishConfig": {
"@jshmrtn:registry": "https://registry.npmjs.org/"
}
}