json-theme-even-fork/package.json

67 lines
1.6 KiB
JSON
Raw Normal View History

2018-09-23 20:28:05 +02:00
{
"name": "jsonresume-theme-even",
2023-02-01 01:49:41 +01:00
"version": "0.18.1",
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",
2023-01-31 02:37:41 +01:00
"default": "./dist/index.js"
},
"main": "./dist/index.cjs",
2023-01-31 02:37:41 +01:00
"unpkg": "./dist/index.umd.cjs",
"module": "./dist/index.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": {
2023-01-31 02:37:41 +01:00
"build": "vite build",
2021-11-05 19:13:33 +01:00
"prebuild:demo": "npm run build",
2023-01-31 02:37:41 +01:00
"build:demo": "mkdir -p public && ./bin/cli.js < node_modules/resume-schema/sample.resume.json > public/index.html",
2023-07-22 02:35:49 +02:00
"format": "prettier .",
2023-01-31 02:37:41 +01:00
"lint": "eslint --ignore-path .gitignore .",
2021-06-19 22:31:31 +02:00
"prepare": "husky install",
"prepublishOnly": "npm run build",
2023-01-31 02:37:41 +01:00
"test": "vitest"
},
2018-09-23 20:28:05 +02:00
"dependencies": {
"feather-icons": "^4.28.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": {
2023-07-22 02:35:49 +02:00
"@vitest/coverage-v8": "0.33.0",
"eslint": "8.45.0",
"html-validate": "8.0.5",
2023-01-09 00:53:49 +01:00
"husky": "8.0.3",
2023-07-22 02:35:49 +02:00
"lint-staged": "13.2.3",
"prettier": "3.0.0",
"prettier-plugin-packagejson": "2.4.5",
2020-12-13 13:53:20 +01:00
"resume-schema": "1.0.0",
2023-07-22 02:35:49 +02:00
"vite": "4.4.6",
"vitest": "0.33.0"
2018-09-23 20:28:05 +02:00
}
}