-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "shelljs-plugin-help",
"version": "1.0.5",
"description": "A help manual plugin for ShellJS",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"format": "prettier --write .",
"updatedocs": "node ./scripts/generateHelpDocs.js",
"example": "node ./example",
"test": "mocha ./tests/*.js",
"coverage": "nyc --reporter=clover --reporter=lcov npm run test",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"keywords": [
"shelljs",
"help",
"manual",
"plugin"
],
"author": "Jessie France (https://github.com/jessiefrance)",
"license": "MIT",
"bugs": "https://github.com/JessieFrance/shelljs-plugin-help/issues",
"homepage": "https://github.com/JessieFrance/shelljs-plugin-help",
"devDependencies": {
"chai": "4.4.1",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "2.8.8",
"shelljs": "0.8.5"
},
"lint-staged": {
"*.{js,json,md}": "prettier --write"
},
"peerDependencies": {
"shelljs": "^0.8.5"
},
"dependencies": {
"marked": "^4.3.0",
"marked-terminal": "^4.2.0"
},
"engines": {
"node": ">=v12.22.12"
}
}