-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 724 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 724 Bytes
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
{
"name": "node-brainfuck-compiler",
"version": "1.0.0",
"description": "A Brainfuck CLI compiler for Node.js.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"brainfuck",
"brainfuck-compiler"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Sadkit/node-brainfuck-compiler.git"
},
"author": "Daniele Molinari",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Sadkit/node-brainfuck-compiler/issues"
},
"homepage": "https://github.com/Sadkit/node-brainfuck-compiler#readme",
"dependencies": {
"prompt-sync": "^4.1.6"
},
"bin": {
"brainfuck-compiler": "./index.js"
}
}