-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "netscape-bookmark-tree",
"version": "2.1.1",
"author": "ZMY",
"license": "MIT",
"keywords": [
"bookmark",
"NETSCAPE-Bookmark"
],
"homepage": "https://zmyjs.github.io/netscape-bookmark-tree/example/",
"description": "Parse the NETSCAPE-Bookmark-file-1 format bookmarks exported by the browser and convert them into nested arrays.",
"scripts": {
"start": "serve",
"test": "mocha test/node.js",
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.1",
"eslint": "^8.40.0",
"mocha": "^10.2.0",
"rollup": "^3.21.5",
"serve": "^14.2.0"
},
"type": "module",
"main": "bookmark.js",
"module": "bookmark.js",
"browser": "bookmark.browser.js",
"unpkg": "bookmark.browser.js",
"repository": {
"type": "git",
"url": "https://github.com/zmyjs/netscape-bookmark-tree.git"
},
"bugs": {
"url": "https://github.com/zmyjs/netscape-bookmark-tree/issues"
},
"dependencies": {
"parse5": "^7.1.2"
},
"files": [
"bookmark.*"
]
}