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
|
{
"name": "tomato-sauce",
"version": "2.0.0",
"description": "Telnet based drawing functions and renderers",
"main": "lib/tomato_sauce.js",
"scripts": {
"document": "jsdoc2md -f 'lib/**/*.js' > doc/README.md",
"lint": "eslint .",
"start": "bin/tomato_sauce.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/rbdr/tomato-sauce.git"
},
"keywords": [
"tomato",
"sauce",
"telnet",
"ansi",
"colors"
],
"author": "Rubén Beltrán del Río <subscriptions@unlimited.pizza>",
"license": "MIT",
"dependencies": {
"getenv": "^1.0.0"
},
"devDependencies": {
"@hapi/eslint-plugin": "^5.1.0",
"eslint": "^8.5.0",
"jsdoc-to-markdown": "^4.0.1"
}
}
|