-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.28 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
{
"name": "jsonresume-theme-spartan-extended-certs",
"version": "0.8.0",
"description": "Extended version of the spartan them to a extended JSON resume format to include something else",
"author": "Doug Ferris <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/priorax/jsonresume-theme-spartan-extended.git"
},
"license": "MIT",
"dependencies": {
"country-code-lookup": "^0.0.20",
"handlebars": "^4.7.7",
"moment": "^2.29.3"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"resume-cli": "^3.0.7",
"semantic-release": "^19.0.3",
"semantic-release-cli": "^5.4.4"
},
"scripts": {
"commit": "./node_modules/.bin/git-cz",
"setup": "ln -sf resume.example.json resume.json",
"lint": "./node_modules/.bin/prettier --write ./index.js ./public/index.html",
"build": "rm -f ./public/index.html && ./node_modules/.bin/resume export ./public/index.html --theme .",
"start": "./node_modules/.bin/resume serve --theme .",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}