-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "@awwsmm/brainscript",
"version": "5.0.0",
"description": "A BrainF*** interpreter written in TypeScript",
"main": "build/index.js",
"scripts": {
"test": "mocha --require ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/awwsmm/BrainScript.git"
},
"keywords": [
"brainfuck",
"bf",
"ts",
"typescript",
"interpreter",
"compiler"
],
"author": "awwsmm",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/awwsmm/BrainScript/issues"
},
"homepage": "https://github.com/awwsmm/BrainScript#readme",
"dependencies": {
"readline-sync": "^1.4.10",
"utf32char": "^1.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"chai": "^4.2.0",
"fast-check": "^1.24.2",
"mocha": "^7.2.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bin": {
"brain": "npx ts-node brain.ts"
}
}