-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 885 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 885 Bytes
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": "mastery-cli",
"description": "Continuous learning for engineers",
"version": "1.0.33",
"license": "UNLICENSED",
"bin": {
"m-cli": "index.js",
"maid": "index.js",
"mastery": "index.js",
"mcli": "index.js"
},
"author": {
"name": "mastery-cli",
"email": "info@example.com",
"url": "https://github.com/mastery-cli/mastery-cli"
},
"keywords": [
"mastery-cli"
],
"files": [
"index.js",
"utils"
],
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\"",
"tests": "mocha tests/*",
"doc": "jsdoc -c jsdoc.json"
},
"dependencies": {
"chalk": "^4.1.2",
"copy-paste": "^1.3.0",
"enquirer": "^2.3.6",
"execa": "^6.1.0",
"expr-eval": "^2.0.2",
"markdown-it": "^13.0.1",
"markdown-to-json": "^0.5.4",
"marked": "^4.2.12",
"marked-terminal": "^5.1.1",
"meow": "^9.0.0"
},
"devDependencies": {
"mocha": "^10.2.0"
}
}