-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
58 lines (58 loc) · 1.97 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
{
"name": "elasticsearch-client-specification",
"version": "0.0.1",
"description": "A library that exposes the elasticsearch client specification as a validatable and iteratable source",
"main": "src/index.ts",
"scripts": {
"lint": "ts-standard src",
"lint:fix": "ts-standard --fix src",
"format:check": "prettier --config .prettierrc.json --loglevel warn --check ../specification/",
"format:fix": "prettier --config .prettierrc.json --loglevel warn --write ../specification/",
"generate-schema": "ts-node src/index.ts",
"transform-expand-generics": "ts-node src/transform/expand-generics.ts",
"transform-to-openapi": "ts-node src/transform/schema-to-openapi.ts",
"filter-by-availability": "ts-node src/transform/filter-by-availability.ts",
"dump-routes": "ts-node src/dump/extract-routes.ts",
"compile:specification": "tsc --project ../specification/tsconfig.json --noEmit",
"build": "rm -rf lib && tsc",
"validate-ts-view": "tsc --noEmit ../output/typescript/types.ts",
"generate-dangling": "ts-node src dangling-types-report.ts",
"test": "TEST_COMPILER=true ava test/**/*test.ts",
"test:coverage": "TEST_COMPILER=true c8 --reporter html ava test/**/*test.ts"
},
"author": "Elastic",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^17.0.12",
"ava": "^4.1.0",
"c8": "^7.11.0",
"minimist": "^1.2.6",
"prettier": "2.5.1",
"prettier-plugin-organize-imports": "^4.0.0",
"ts-node": "^10.4.0",
"ts-standard": "^11.0.0",
"typescript": "^4.5.5"
},
"dependencies": {
"chalk": "^4.1.2",
"compiler-wasm-lib": "file:../compiler-rs/compiler-wasm-lib/pkg",
"fastest-levenshtein": "^1.0.12",
"ora": "^5.4.1",
"safe-stable-stringify": "^2.5.0",
"semver": "^7.5.2",
"ts-morph": "^13.0.3",
"zx": "^4.3.0"
},
"engines": {
"node": ">=14"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"keywords": []
}