-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 KB
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
{
"name": "@codedoc/cli",
"version": "0.3.0",
"description": "CLI helper for codedoc projects",
"main": "index.js",
"bin": {
"codedoc": "src/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "npm run format:w && npm run lint:w",
"format:w": "prettier -w .",
"lint:w": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/CONNECT-platform/codedoc-cli.git"
},
"keywords": [
"codedoc",
"documentation",
"docs",
"cli",
"jamstack",
"github-pages"
],
"author": "Eugene Ghanizadeh Khoub <ghanizadeh.eugene@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CONNECT-platform/codedoc-cli/issues"
},
"homepage": "https://github.com/CONNECT-platform/codedoc-cli#readme",
"dependencies": {
"chalk": "^4.0.0",
"shelljs": "^0.8.3",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2"
},
"devDependencies": {
"eslint": "^7.19.0",
"prettier": "^2.2.1"
}
}