-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "jsonresume-theme-straightforward",
"private": false,
"version": "0.2.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": {
"start": "resume serve --theme .",
"export": "npm-run-all export:*",
"export:html": "resume export docs/index.html --format html --theme .",
"export:pdf": "resume export docs/index.pdf --format pdf --theme .",
"lint": "npm-run-all lint:*",
"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": {
"@types/jest": "^29.0.0",
"eslint": "^9.0.0",
"html-validate": "^9.0.1",
"jest": "^29.0.0",
"npm-run-all": "^4.1.5",
"pa11y": "^8.0.0",
"resume-cli": "3.1.2"
}
}