2021-01-27 23:29:01 +00:00
|
|
|
{
|
2021-01-30 16:49:03 +00:00
|
|
|
"name": "gmi-web-cli",
|
2021-03-29 16:16:21 +00:00
|
|
|
"version": "1.0.1",
|
2021-02-25 18:17:38 +00:00
|
|
|
"description": "Convert text/gemini to text/html.",
|
2021-02-11 23:26:29 +00:00
|
|
|
"main": "html.js",
|
2021-02-10 22:03:48 +00:00
|
|
|
"type": "module",
|
2021-01-28 06:09:49 +00:00
|
|
|
"bin": {
|
|
|
|
"gmi-web": "cli.js"
|
|
|
|
},
|
2021-01-29 18:51:53 +00:00
|
|
|
"man": [
|
2021-02-16 20:32:27 +00:00
|
|
|
"./gmi-web.1"
|
2021-01-29 18:51:53 +00:00
|
|
|
],
|
2021-01-30 16:32:44 +00:00
|
|
|
"files": [
|
2021-02-12 22:56:12 +00:00
|
|
|
"html.js",
|
2021-02-24 22:13:06 +00:00
|
|
|
"html.spec.js",
|
2021-02-15 23:07:42 +00:00
|
|
|
"css.js",
|
2021-02-24 22:13:06 +00:00
|
|
|
"css.spec.js",
|
2021-02-25 17:02:35 +00:00
|
|
|
"gmi.css",
|
|
|
|
"gmi-web.css",
|
|
|
|
"cli.js",
|
|
|
|
"README.md",
|
|
|
|
"CONTRIBUTING.md",
|
|
|
|
"gmi-web.1",
|
|
|
|
"example.gmi",
|
|
|
|
"UNLICENSE"
|
2021-01-30 16:32:44 +00:00
|
|
|
],
|
|
|
|
"scripts": {
|
2021-03-29 01:43:20 +00:00
|
|
|
"lint": "eslint .",
|
2021-02-24 19:50:41 +00:00
|
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
|
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
|
|
|
|
"test:update": "NODE_OPTIONS=--experimental-vm-modules jest --updateSnapshot",
|
2021-03-29 16:10:48 +00:00
|
|
|
"prepare": "scdoc < gmi-web.1.scd > gmi-web.1 && prettier --write . && npm run lint && npm run test"
|
2021-01-30 16:32:44 +00:00
|
|
|
},
|
2021-01-27 23:29:01 +00:00
|
|
|
"dependencies": {
|
2021-02-15 20:56:41 +00:00
|
|
|
"css": "^3.0.0",
|
2021-01-30 18:47:46 +00:00
|
|
|
"escape-html": "^1.0.3",
|
2021-01-28 21:03:30 +00:00
|
|
|
"map-stream": "0.0.7",
|
|
|
|
"vinyl-fs": "^3.0.3",
|
2021-01-28 06:09:49 +00:00
|
|
|
"yargs": "^16.2.0"
|
2021-01-27 23:29:01 +00:00
|
|
|
},
|
2021-01-30 16:32:44 +00:00
|
|
|
"devDependencies": {
|
2021-03-29 00:27:31 +00:00
|
|
|
"eslint": "^7.23.0",
|
2021-03-29 01:43:20 +00:00
|
|
|
"eslint-plugin-jest": "^24.3.2",
|
2021-02-24 19:50:41 +00:00
|
|
|
"jest": "^26.6.3",
|
2021-01-30 16:32:44 +00:00
|
|
|
"prettier": "^2.2.1"
|
|
|
|
},
|
2021-01-27 23:29:01 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://codeberg.org/talon/gmi-web.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"gemini",
|
|
|
|
"css",
|
|
|
|
"html",
|
|
|
|
"web",
|
|
|
|
"gmi"
|
|
|
|
],
|
|
|
|
"author": "Talon Poole",
|
2021-01-28 17:56:02 +00:00
|
|
|
"license": "UNLICENSE"
|
2021-01-27 23:29:01 +00:00
|
|
|
}
|