json-theme-even-fork/package.json

68 lines
1.8 KiB
JSON

{
"name": "jsonresume-theme-even",
"version": "0.17.1",
"description": "A flat theme for JSON Resume, compatible with the bleeding edge resume schema",
"keywords": [
"resume",
"json",
"theme",
"flat",
"curriculum-vitae",
"cv"
],
"homepage": "https://jsonresume-theme-even.rbrd.in/",
"bugs": {
"url": "https://github.com/rbardini/jsonresume-theme-even/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rbardini/jsonresume-theme-even"
},
"license": "MIT",
"author": "Rafael Bardini",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"unpkg": "./dist/index.umd.js",
"module": "./dist/index.module.js",
"source": "index.js",
"bin": {
"jsonresume-theme-even": "bin/cli.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "microbundle build --target node",
"postbuild": "cp -r resume.hbs partials style.css dist",
"prebuild:demo": "npm run build",
"build:demo": "mkdir -p public && cat node_modules/resume-schema/sample.resume.json | ./bin/cli.js > public/index.html",
"format": "prettier --ignore-path .gitignore .",
"lint": "eslint --ignore-path .gitignore --ignore-pattern test .",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"test": "c8 tap --node-arg=--experimental-json-modules --no-coverage"
},
"dependencies": {
"feather-icons": "^4.28.0",
"handlebars": "^4.7.0",
"micromark": "^2.11.0",
"striptags": "^3.2.0"
},
"devDependencies": {
"c8": "7.12.0",
"eslint": "8.24.0",
"html-validate": "7.5.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"microbundle": "0.15.1",
"prettier": "2.7.1",
"resume-schema": "1.0.0",
"tap": "16.3.0"
}
}