forked from tobiasholler/brnfck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 803 Bytes
/
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
{
"name": "brnfck",
"version": "0.0.1",
"description": "Brainfuck interpreter written in TypeScript",
"main": "main.js",
"scripts": {
"compile": "./node_modules/.bin/tsc -p .",
"compile:watch": "./node_modules/.bin/tsc -p . -w",
"cli": "node src/cli.js",
"test": "node src/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobiasholler/brnfck.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tobiasholler/brnfck/issues"
},
"homepage": "https://github.com/tobiasholler/brnfck#readme",
"dependencies": {
"@types/node": "^9.6.2",
"cli-color": "^1.2.0",
"colors": "^1.2.1",
"commander": "^2.15.1",
"typescript": "^2.8.1"
},
"bin": {
"brnfck": "./src/brnfck-cli.js"
}
}