-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 868 Bytes
/
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
{
"name": "mdn-cli",
"version": "0.2.0",
"description": "Command-line utility for Mozilla Developer Network (MDN)",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ytang/mdn-cli.git"
},
"keywords": [
"mdn",
"cli"
],
"author": "Yang Tang",
"license": "MIT",
"bugs": {
"url": "https://github.com/ytang/mdn-cli/issues"
},
"homepage": "https://github.com/ytang/mdn-cli#readme",
"preferGlobal": true,
"bin": {
"mdn-cli": "index.js"
},
"dependencies": {
"axios": "^1.3.2",
"chalk": "^2.4.2",
"commander": "^2.20.3",
"css-select": "^5.1.0",
"he": "^1.2.0",
"htmlparser2": "^3.10.1",
"lodash": "^4.17.21",
"supports-hyperlinks": "^2.3.0"
},
"devDependencies": {
"prettier": "2.8.4"
}
}