-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "@wiwo/json-schema-defaults",
"version": "1.0.0",
"description": "Generate JSON object from default values in JSON Schema",
"homepage": "https://github.com/chute/grunt-json-schema-defaults",
"author": {
"name": "Chute",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/chute/json-schema-defaults.git"
},
"bugs": {
"url": "https://github.com/chute/json-schema-defaults/issues"
},
"main": "index.js",
"bin": {
"json-schema-defaults": "bin/defaults.js"
},
"scripts": {
"test": "echo NODE TESTS && npx jest --env=node && echo JSDOM TESTS && npx jest --env=jsdom"
},
"keywords": [
"json",
"schema"
],
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.12.13",
"@types/jest": "^26.0.20",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-conventional-changelog": "^6.1.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.1"
},
"dependencies": {
"argparse": "^1.0.9"
}
}