-
Notifications
You must be signed in to change notification settings - Fork 387
/
package.json
80 lines (80 loc) · 2.01 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "resume-cli",
"version": "3.1.2",
"description": "The JSON Resume command line interface",
"main": "index.js",
"engines": {
"node": ">=12 <18"
},
"files": [
"build/*",
"!test-utils",
"!*.test.js"
],
"scripts": {
"dev": "babel-node lib/main.js",
"lint": "eslint --ignore-path .gitignore .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"prepare": "babel lib -d build --copy-files",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/jsonresume/resume-cli.git"
},
"license": "MIT",
"bin": {
"resume": "build/main.js"
},
"dependencies": {
"async": "^3.2.0",
"browser-sync": "^2.29.3",
"btoa": "^1.2.1",
"chalk": "^4.1.0",
"commander": "^6.0.0",
"dotenv": "^8.2.0",
"file-exists": "^5.0.1",
"jest-extended": "^0.11.5",
"jsonresume-theme-elegant": "^1.16.1",
"jsonresume-theme-even": "^0.6.0",
"mime-types": "^2.1.27",
"object-path-immutable": "^4.1.1",
"puppeteer": "^18.2.1",
"quaff": "^4.2.0",
"read": "^1.0.7",
"resume-schema": "^1.0.0",
"stream-to-string": "^1.2.1",
"superagent": "^6.0.0",
"yaml-js": "^0.2.3",
"yesno": "^0.3.1",
"z-schema": "^5.0.0",
"z-schema-errors": "^0.2.1"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/eslint-parser": "7.12.1",
"@babel/node": "7.12.10",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/preset-env": "7.12.11",
"babel-eslint": "10.1.0",
"babel-jest": "28.1.2",
"dedent": "0.7.0",
"eslint": "7.15.0",
"eslint-config-prettier": "7.0.0",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.2.0",
"flat": "5.0.2",
"fs-monkey": "1.0.1",
"husky": "5.0.6",
"jest": "28.1.2",
"lint-staged": "10.5.3",
"memfs": "3.2.0",
"mock-stdin": "1.0.0",
"prettier": "2.2.1",
"unionfs": "4.4.0",
"waait": "1.0.5"
}
}