-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "@nodecg/json-schema-defaults",
"version": "1.0.4",
"description": "A library and CLI tool for generating a default value from a JSON schema",
"homepage": "https://github.com/nodecg/json-schema-defaults",
"author": {
"name": "The NodeCG Project",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/nodecg/json-schema-defaults.git"
},
"bugs": {
"url": "https://github.com/nodecg/json-schema-defaults/issues"
},
"main": "dist/index.js",
"bin": {
"json-schema-defaults": "bin/defaults.js"
},
"scripts": {
"test": "jest",
"build": "tsc -b"
},
"keywords": [
"json",
"schema"
],
"license": "MIT",
"dependencies": {
"argparse": "^1.0.9"
},
"files": [
"bin",
"dist",
"index.js",
"package-lock.json"
],
"devDependencies": {
"@jest/globals": "^29.4.1",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"jest": "^29.4.1",
"semantic-release": "^20.1.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"private": false
}