-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "bookworms",
"version": "2.0.4",
"description": "A cli tool for centralising and generating bookmarks",
"main": "./src/index.js",
"type": "module",
"bin": {
"bookworms": "bin/index.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"start": "node --experimental-vm-modules ./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thearegee/bookworms.git"
},
"keywords": [
"Bookmarks",
"CLI",
"workflow",
"chrome",
"readme"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/thearegee/bookworms/issues"
},
"homepage": "https://github.com/thearegee/bookworms#readme",
"dependencies": {
"handlebars": "^4.7.7",
"handlebars-async-helpers": "^1.0.4",
"json-stringify-safe": "^5.0.1",
"read-js-yaml": "^1.0.3",
"uuid": "^8.3.2",
"xml2json-light": "^1.0.6",
"yargs": "^17.2.1"
},
"devDependencies": {
"jest": "^29.2.2"
}
}