-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.3 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
{
"name": "@oada/schemas",
"version": "4.0.0",
"author": "Alex Layton <[email protected]>",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./**/*.schema": "./dist/**/*.schema.cjs",
"./utils": "./dist/utils.cjs"
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "yarn g:tsc",
"clean": "yarn g:tsc --clean && rm -rf dist",
"test": "ava",
"test:debug": "ava -T 60m -svc 1 --no-worker-threads"
},
"ava": {
"failFast": false,
"files": [
"**/*.spec.ts"
],
"typescript": {
"extensions": [
"ts",
"cts",
"mts"
],
"rewritePaths": {
"/": "dist/"
},
"compile": false
}
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.5.4",
"@ava/typescript": "^4.1.0",
"@types/glob": "^8.1.0",
"@types/json-schema": "^7.0.15",
"@types/lodash.get": "^4.4.9",
"@types/lodash.merge": "^4",
"@types/node": "^20.12.4",
"ajv": "^8.12.0",
"ava": "6.1.2",
"csv-parse": "^5.5.5",
"deep-freeze-node": "^1.1.3",
"glob": "^10.3.12",
"jsonschema8": "^2.0.0",
"tslib": "^2.6.2",
"type-fest": "^4.15.0"
},
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2"
}
}