-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.83 KB
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
64
65
66
67
68
69
70
71
72
{
"name": "jsontohtml-render",
"version": "1.0.8",
"description": "json formatter, json previewer",
"main": "./build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArjunVarshney/jsontohtml-render.git"
},
"author": "Arjun Varshney",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArjunVarshney/jsontohtml-render/issues"
},
"homepage": "https://github.com/ArjunVarshney/jsontohtml-render#readme",
"types": "./index.d.ts",
"files": [
"build/**/*.js",
"build/**/*.d.ts",
"./index.d.ts"
],
"devDependencies": {
"@types/node": "^18.15.11",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4"
},
"keywords": [
"json to html",
"json formatter",
"json-formatter",
"object to html",
"object visualizer",
"object-visualizer",
"json-visualizer",
"json visualizer",
"json-data-visualizer",
"json data visualizer",
"data-visualizer",
"data visualizer",
"json-to-html",
"object-to-html",
"json-renderer",
"json renderer",
"json-parser",
"json parser",
"data-viewer",
"data viewer",
"json-previewer",
"json previewer",
"web data display",
"web-data-display",
"json",
"html",
"render",
"viewer",
"parser"
]
}