-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "openapi-diff-node",
"version": "1.0.3",
"description": "An openapi diffing tool for node.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "NODE_ENV=development tsup src/index.ts --watch --onSuccess 'node dist/index.js'",
"build": "tsup",
"test": "jest",
"check:types": "npx tsc --noEmit --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaychang99/openapi-diff-node.git"
},
"keywords": [],
"author": "Jaewon Chang",
"license": "ISC",
"bugs": {
"url": "https://github.com/jaychang99/openapi-diff-node/issues"
},
"homepage": "https://github.com/jaychang99/openapi-diff-node#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"openapi-types": "^12.1.3",
"prettier": "^3.3.2",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}