-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.23 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
{
"name": "textgraphic",
"version": "0.0.7",
"description": "Textual 2D Graphics Framework",
"main": "out/dist/textgraphic.node.js",
"directories": {
"test": "test"
},
"bin": {
"text": "./out/compiled/repl/main.js"
},
"scripts": {
"build": "node build.js",
"fix-playground-setup": "sudo rm -f /usr/local/bin/textgraphic; sudo npm link; chmod u+x ./out/compiled/repl/main.js",
"repl": "node ./out/compiled/repl/main.js",
"test": "mocha \"./out/compiled/tests/main.js\"",
"config-ci": "npm install -g typescript mocha",
"play-unicode": "node ./out/compiled/playgrounds/unicode-box.js",
"play-animation": "node ./out/compiled/playgrounds/animation.js",
"play-timpani": "node ./out/compiled/playgrounds/timpani.js",
"play-transparency": "node ./out/compiled/playgrounds/transparency.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pouyakary/textgraphic"
},
"author": "Pouya Kary",
"license": "ISC",
"homepage": "https://github.com/pouyakary/textgraphic",
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"dts-bundle-generator": "^5.9.0",
"mocha": "^9.0.0",
"typedoc": "^0.21.4",
"webpack-cli": "^4.7.2"
}
}