forked from aspecto-io/genson-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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
{
"name": "genson-js",
"version": "0.0.8",
"main": "dist/index.js",
"types": "dist/index.d.js",
"author": "Aspecto.io",
"license": "Apache-2.0",
"keywords": [
"json",
"schema",
"json-schema",
"jsonschema",
"object",
"generate",
"generator",
"builder",
"merge"
],
"description": "JSON schema generator with a possibility to merge schemas",
"scripts": {
"test": "jest",
"tdd": "jest --watch",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^14.6.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"typescript": "^4.0.2"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aspecto-io/genson-js.git"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"LICENSE",
"README.md"
],
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"testMatch": [
"**/tests/**/*.spec.+(ts|tsx|js)"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"globals": {
"ts-jest": {
"diagnostics": false
}
}
}
}