-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.19 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
{
"name": "@naturalcycles/json2html",
"scripts": {
"prepare": "husky install",
"json2html": "tsn ./src/bin/json2html.ts",
"json2html-debug": "tsn ./src/bin/json2html.ts './src/test/**/*.json' --debug"
},
"dependencies": {
"@naturalcycles/js-lib": "^14.68.0",
"@naturalcycles/nodejs-lib": "^12.53.0",
"fs-extra": "^10.0.0",
"globby": "^11.0.0",
"yargs": "^17.2.1"
},
"devDependencies": {
"@naturalcycles/dev-lib": "^12.12.2",
"@types/node": "^16.11.7",
"jest": "^27.3.1"
},
"files": [
"dist",
"src",
"!src/test",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"!src/**/__exclude"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"json2html": "dist/bin/json2html.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalCycles/json2html"
},
"engines": {
"node": ">=14.15.0"
},
"version": "1.1.0",
"description": "Render arbitrary json as human-friendly html. CLI and API.",
"keywords": [
"json",
"html",
"json2html",
"json-to-html",
"cli"
],
"author": "Natural Cycles Team",
"license": "MIT"
}