-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 917 Bytes
/
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
{
"name": "json-to-tree-render",
"version": "1.0.3",
"description": "An npm package to render JSON object to a pretty tree view in html with collapsible and editable nodes.",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"start": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aceta-minophen/json-to-tree-render.git"
},
"keywords": [
"json",
"tree",
"collapsible",
"editable",
"json-to-tree",
"html-render"
],
"author": "Sukritee Sharma, Srishti Agrawal",
"license": "ISC",
"bugs": {
"url": "https://github.com/aceta-minophen/json-to-tree-render/issues"
},
"homepage": "https://github.com/aceta-minophen/json-to-tree-render#readme",
"dependencies": {
"express.js": "^1.0.0",
},
"devDependencies": {
"nodemon": "^2.0.20",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}