-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.92 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "lincoln",
"version": "1.0.0",
"description": "A CLI tool to plan and achieve your reading goals!",
"main": "out/Main.js",
"scripts": {
"test": "mocha --require ts-node/register test/**/*.ts",
"link": "npm link",
"coverage": "nyc npm run test",
"compile": "tsc -p .",
"validator": "npx typescript-json-validator"
},
"bin": {
"lincoln": "./out/src/Main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfainstein/lincoln.git"
},
"keywords": [
"reading",
"plan",
"planning",
"goals",
"CLI",
"tool",
"lincoln"
],
"author": "Mark Fainstein",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mfainstein/lincoln/issues"
},
"homepage": "https://github.com/mfainstein/lincoln#readme",
"dependencies": {
"@mikro-orm/core": "^4.0.0",
"@mikro-orm/sqlite": "^4.0.0",
"@nano-sql/adapter-sqlite": "^2.0.8",
"@nano-sql/core": "^2.3.7",
"@types/better-queue": "^3.8.2",
"@types/cote": "^0.19.0",
"@types/md5": "^2.2.0",
"@types/pubsub-js": "^1.8.0",
"better-queue": "^3.8.10",
"commander": "^6.0.0",
"cote": "^1.0.0",
"inquirer": "^7.3.3",
"inversify": "^5.0.1",
"md5": "^2.3.0",
"omelette": "^0.4.12",
"pubsub-js": "^1.9.0",
"reflect-metadata": "^0.1.13",
"rxmq": "^2.0.1",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/inquirer": "^7.3.0",
"@types/lowdb": "^1.0.9",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^8.1.2",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript-json-validator": "^2.4.2"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src"
],
"reporter": [
"text",
"html"
],
"all": true,
"check-coverage": false,
"statements": 90,
"functions": 90,
"branches": 90,
"lines": 90
}
}