-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"name": "jsonresume-theme-straightforward",
"private": false,
"version": "0.5.0",
"description": "a straightforward jsonresume theme",
"homepage": "https://github.com/slugstack/jsonresume-theme-straightforward",
"bugs": {
"url": "https://github.com/slugstack/jsonresume-theme-straightforward/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/slugstack/jsonresume-theme-straightforward.git"
},
"license": "MIT",
"author": "Aaron Gershman",
"keywords": [
"jsonresume",
"theme",
"straightforward"
],
"files": [
"index.js",
"partials/*.hbs",
"resume.hbs",
"style.css"
],
"scripts": {
"export": "npm run export:html && npm run export:pdf",
"export:html": "resumed render -o docs/index.html -t jsonresume-theme-straightforward",
"export:pdf": "resumed export -o docs/index.pdf -t jsonresume-theme-straightforward",
"lint": "npm run lint:eslint && npm run lint:pa11y",
"lint:eslint": "eslint .",
"lint:pa11y": "pa11y --reporter=cli $(pwd)/docs/index.html",
"test": "jest && npm run export:html && npm run lint"
},
"dependencies": {
"handlebars": "^4.7.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"eslint": "^10.0.0",
"globals": "^17.5.0",
"html-validate": "^10.0.0",
"jest": "^30.0.2",
"jsonresume-theme-straightforward": "file:.",
"pa11y": "^9.0.0",
"resumed": "^6.1.0"
}
}