-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "json-schemify",
"version": "1.0.0",
"description": "Converts a JSON structure to a valid JSON Schema object.",
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint ./src --ext .ts",
"build": "rm -rf dist && tsc",
"release": "standard-version",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgreyjs/json-schemify.git"
},
"keywords": [
"json",
"schema",
"object",
"convert",
"generate"
],
"author": "Thomas Grey",
"license": "MIT",
"engines": {
"node": ">=7"
},
"bugs": {
"url": "https://github.com/tgreyjs/json-schemify/issues"
},
"homepage": "https://github.com/tgreyjs/json-schemify#readme",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.172",
"@types/node": "^16.4.13",
"@types/tmp": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"ajv": "^8.6.2",
"ajv-formats": "^2.1.0",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"standard-version": "^9.3.1",
"tmp": "^0.2.1",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}