-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "bookmark-parser",
"version": "0.1.5",
"description": "Find and parse latest bookmark backup of Firefox, Chrome and other browsers",
"main": "index.js",
"scripts": {
"lint": "make lint",
"test": "make test",
"test-cov": "make test-cov",
"test-coveralls": "make test-coveralls",
"commitmsg": "commitlint -e $GIT_PARAMS",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"precommit": "make lint",
"prepush": "make lint"
},
"keywords": [
"bookmark",
"firefox",
"chrome",
"parse",
"jsonlz4"
],
"author": "CCharlieli",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"chai": "4.2.0",
"coveralls": "^3.0.6",
"eslint": "6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-config-wcl-backend": "0.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.4",
"istanbul": "^0.4.5",
"mocha": "6.2.0",
"prettier": "^1.18.2"
},
"dependencies": {
"bluebird": "^3.5.0",
"json-stringify-safe": "^5.0.1",
"jsonfile": "5.0.0",
"line-reader": "^0.4.0",
"lz4": "0.6.3",
"uuid": "^3.1.0",
"xml2json": "^0.11.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CCharlieLi/bookmark-parser.git"
},
"bugs": {
"url": "https://github.com/CCharlieLi/bookmark-parser/issues"
},
"homepage": "https://github.com/CCharlieLi/bookmark-parser#readme"
}