forked from udamir/api-ref-bundler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.95 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
{
"name": "api-ref-bundler",
"version": "0.4.2",
"description": "Bundle all external $ref in Json based API document into single document",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"browser": "dist/index.iife.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "rollup -c",
"test": "jest --verbose --runInBand",
"test:coverage": "jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/udamir/api-ref-bundler"
},
"keywords": [
"jsonschema",
"openapi",
"swagger",
"asyncapi",
"api",
"ref",
"bundler",
"dereference"
],
"author": "Damir Yusipov",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^26.0.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.1.1",
"jest": "^26.0.1",
"js-yaml": "^4.1.0",
"ts-jest": "^26.1.0",
"ts-node": "^10.7.0",
"tslint": "^6.1.2",
"typescript": "^4.6.2",
"rimraf": "^5.0.5",
"rollup": "^2.79.1",
"rollup-plugin-filesize": "^9.1.0",
"rollup-plugin-progress": "^1.1.2"
},
"engines": {
"node": ">=16.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.*(\\.|/)(test|spec))\\.(ts?|tsx?|js?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"collectCoverage": true
},
"dependencies": {
"json-crawl": "0.4.2"
}
}