-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ascii-hypercube",
"version": "1.0.0",
"description": "Render tesseracts as text",
"main": "build/ascii-hypercube.js",
"bin": {
"ascii-hypercube": "src/cli.js"
},
"files": [
"build/",
"src/",
"LICENSE",
"README.md"
],
"directories": {
"lib": "src"
},
"scripts": {
"build": "coffee -c -o build/ src/",
"prepare": "npm run build",
"prepublishOnly": "npm run update-cli-docs",
"test": "npm run build && node src/test.js",
"update-cli-docs": "node -e \"const fs = require('fs'); fs.writeFileSync('README.md', fs.readFileSync('README.md', 'utf8').replace(/```HELP_OUTPUT.+?```/s, '```HELP_OUTPUT\\n' + require('child_process').execSync('ascii-hypercube --help').toString().trim() + '\\n```'))\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/1j01/ascii-hypercube.git"
},
"keywords": [
"cube",
"tesseract",
"hypercube",
"hyperrectangle",
"text",
"ascii",
"geometry",
"ascii-art",
"text-art",
"shapes",
"dimensions",
"2d",
"3d",
"4d",
"5d"
],
"author": "Isaiah Odhner <isaiahodhner@gmail.com> (https://isaiahodhner.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/1j01/ascii-hypercube/issues"
},
"homepage": "https://github.com/1j01/ascii-hypercube#readme",
"devDependencies": {
"coffeescript": "2.4.1"
},
"dependencies": {
"argparse": "^2.0.1",
"grapheme-splitter": "^1.0.4"
}
}