-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
63
{
"name": "ask-json",
"description": "Easy interactive prompts to create and validate data using JSON schema",
"version": "0.1.9",
"author": "Jon McClure <[email protected]>",
"homepage": "https://github.com/reuters-graphics/ask-json",
"repository": "github:reuters-graphics/ask-json",
"bugs": {
"url": "https://github.com/reuters-graphics/ask-json/issues"
},
"keywords": [
"jsonschema",
"validation",
"validator",
"json",
"schema",
"cli",
"interface",
"ask",
"interactive",
"dev",
"development",
"tool",
"tooling"
],
"license": "MIT",
"private": false,
"engines": {
"node": ">=8.0.0"
},
"main": "dist/index.js",
"bin": {
"askjson": "dist/cli.js"
},
"files": [
"dist/*"
],
"scripts": {
"prepublishOnly": "npm run build && npm run test-automatic-only",
"build": "rollup --config rollup.config.js",
"test-automatic-only": "TEST=true mocha",
"test": "TEST=true mocha --recursive"
},
"dependencies": {
"ajv": "^6.10.2",
"chalk": "^3.0.0",
"json-schema-traverse": "^1.0.0",
"lodash": "^4.17.15",
"prompts": "^2.3.0",
"update-notifier": "^4.0.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"@hobbes7878/eslint-config": "^0.0.2",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"eslint": "^6.8.0",
"expect.js": "^0.3.1",
"mocha": "^6.2.2",
"rollup": "^1.29.1",
"rollup-plugin-node-externals": "^2.1.3"
}
}