-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.04 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "ascii-table3",
"version": "0.9.0",
"author": "João Simões <[email protected]> (https://github.com/AllMightySauron)",
"description": "Javascript ASCII renderer for beautiful console-based tables",
"repository": {
"type": "git",
"url": "git://github.com/AllMightySauron/ascii-table3"
},
"license": "Apache-2.0",
"keywords": [
"table",
"ascii",
"console"
],
"contributors": [
{
"name": "João Simões",
"github": "https://github.com/AllMightySauron"
}
],
"main": "index.js",
"types": "dist/ascii-table3.d.ts",
"engines": {
"node": ">=11.14.0"
},
"scripts": {
"qa": "npm run hint && npm run coverage",
"hint": "jshint ./",
"test": "mocha -R spec",
"coverage": "nyc mocha",
"build": "copyfiles -u 1 \"src/**/*.d.ts\" dist && npx tsc"
},
"devDependencies": {
"jshint": "^2.12.0",
"typescript": "^4.9.3",
"copyfiles": "^2.4.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0"
},
"dependencies": {
"printable-characters": "^1.0.42"
}
}