-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.81 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
{
"name": "juniper",
"version": "1.0.2",
"description": "ESM JSON Schema builder for static Typescript inference.",
"engines": {
"node": ">=14",
"npm": ">=7"
},
"type": "module",
"author": "jacobley",
"license": "MIT",
"repository": "jacobley/juniper",
"homepage": "https://github.com/jacobley/juniper#readme",
"bugs": {
"url": "https://github.com/jacobley/juniper/issues"
},
"keywords": [
"JSON",
"schema",
"json-schema",
"typescript",
"builder",
"static-types",
"open-api",
"swagger"
],
"sideEffects": false,
"scripts": {
"coverage": "npm run instrument && nyc mocha ./nyc/tests/unit",
"instrument": "nyc instrument --nycrc-path=nyc.instrument.cjs ./dist ./nyc",
"lint": "eslint --cache --ext .cjs,.ts . --report-unused-disable-directives",
"lint:fix": "eslint --cache --fix --ext .cjs,.ts . --report-unused-disable-directives",
"test": "npm run coverage",
"tsc": "tsc",
"unit-test": "mocha ./dist/tests/unit"
},
"main": "./dist/index.js",
"exports": {
".": {
"types": [
"./src/index.ts",
"./dist/index.d.ts"
],
"default": "./dist/index.js"
}
},
"dependencies": {
"escape-string-regexp": "4 - 5"
},
"devDependencies": {
"@types/chai": "4.3.1",
"@types/mocha": "9.1.1",
"@types/node": "17.0.31",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"ajv": "8.11.0",
"chai": "4.3.6",
"eslint": "8.14.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.2.9",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-sonarjs": "0.13.0",
"eslint-plugin-unicorn": "42.0.0",
"expect-type": "0.13.0",
"mocha": "10.0.0",
"nyc": "15.1.0",
"sinon": "13.0.2",
"typescript": "4.6.4"
}
}