json-theme-even-fork/package.json

68 lines
1.8 KiB
JSON
Raw Normal View History

2018-09-23 20:28:05 +02:00
{
"name": "jsonresume-theme-even",
2022-03-08 13:56:31 +01:00
"version": "0.17.0",
2018-09-23 20:28:05 +02:00
"description": "A flat theme for JSON Resume, compatible with the bleeding edge resume schema",
2021-11-05 19:04:08 +01:00
"keywords": [
"resume",
"json",
"theme",
"flat",
"curriculum-vitae",
"cv"
],
2022-03-30 15:51:20 +02:00
"homepage": "https://jsonresume-theme-even.rbrd.in/",
"bugs": {
"url": "https://github.com/rbardini/jsonresume-theme-even/issues"
},
2018-09-23 20:28:05 +02:00
"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",
2021-03-06 14:53:58 +01:00
"bin": {
"jsonresume-theme-even": "bin/cli.js"
},
"files": [
2021-03-06 14:46:55 +01:00
"bin",
"dist"
],
"scripts": {
"build": "microbundle build --target node",
"postbuild": "cp -r resume.hbs partials style.css dist",
2021-11-05 19:13:33 +01:00
"prebuild:demo": "npm run build",
2021-03-07 14:50:42 +01:00
"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 .",
2021-06-19 22:31:31 +02:00
"prepare": "husky install",
"prepublishOnly": "npm run build",
"test": "c8 tap --node-arg=--experimental-json-modules --no-coverage"
},
2018-09-23 20:28:05 +02:00
"dependencies": {
"feather-icons": "^4.28.0",
"handlebars": "^4.7.0",
2021-03-03 19:50:15 +01:00
"micromark": "^2.11.0",
2021-06-19 22:31:31 +02:00
"striptags": "^3.2.0"
},
"devDependencies": {
2022-05-13 16:05:55 +02:00
"c8": "7.11.2",
"eslint": "8.15.0",
"html-validate": "7.0.0",
"husky": "8.0.1",
"lint-staged": "12.4.1",
"microbundle": "0.15.0",
"prettier": "2.6.2",
2020-12-13 13:53:20 +01:00
"resume-schema": "1.0.0",
2022-05-13 16:05:55 +02:00
"tap": "16.2.0"
2018-09-23 20:28:05 +02:00
}
}