forked from jsonresume/resume-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.14 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
46
47
48
49
50
51
52
{
"name": "resume-cli",
"version": "0.0.0-development",
"description": "The JSON Resume command line interface",
"main": "index.js",
"engines": {
"node": ">=10.18.1"
},
"files": [
"index.js",
"lib/*"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --ignore-path .gitignore .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/jsonresume/resume-cli.git"
},
"license": "MIT",
"bin": {
"resume": "index.js"
},
"dependencies": {
"async": "^3.2.0",
"browser-sync": "^2.26.7",
"btoa": "^1.2.1",
"chalk": "^4.1.0",
"commander": "^6.0.0",
"dotenv": "^8.2.0",
"jsonlint": "^1.6.3",
"jsonresume-theme-even": "^0.4.1",
"puppeteer": "^5.2.1",
"read": "^1.0.7",
"resume-schema": "^0.1.3",
"superagent": "^6.0.0",
"util.promisify": "^1.0.1",
"z-schema": "^4.2.3",
"z-schema-errors": "^0.2.1"
},
"devDependencies": {
"eslint": "7.6.0",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"mocha": "8.1.1",
"should": "^11.1.0",
"prettier": "2.0.5"
}
}