-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
48 lines (48 loc) · 1.51 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
{
"name": "json-schema-instantiator",
"version": "1.0.0",
"description": "A simple instantiator for json schemas.",
"main": "dist/cjs/instantiator.js",
"module": "dist/esm/instantiator.mjs",
"types": "dist/types/instantiator.d.ts",
"exports": {
".": {
"types": "./dist/types/instantiator.d.ts",
"import": "./dist/esm/instantiator.mjs",
"require": "./dist/cjs/instantiator.js"
}
},
"scripts": {
"build": "node --unhandled-rejections=strict infrastructure/package_scripts/build.mjs",
"build_infrastructure": "node --unhandled-rejections=strict infrastructure/package_scripts/build_infrastructure.mjs",
"clean": "node --unhandled-rejections=strict infrastructure/package_scripts/clean.mjs",
"format": "node --unhandled-rejections=strict infrastructure/package_scripts/format.mjs",
"prepack": "node --unhandled-rejections=strict infrastructure/package_scripts/prepack.mjs",
"test": "node --unhandled-rejections=strict infrastructure/package_scripts/test.mjs"
},
"keywords": [
"JSON",
"schema",
"instantiate",
"instantiator",
"JSON-Schema",
"Generator",
"Generate",
"Data Generation"
],
"authors": [
"Tom Arad",
"Samuel Batista <[email protected]> (https://sambatista.com) "
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tomarad/JSON-Schema-Instantiator"
},
"devDependencies": {
"chai": "^4.5.0",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}