-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "monkey-typescript",
"version": "0.2.0",
"description": "A Monkey language interpreter in Typescript",
"main": "build/index",
"types": "build/index",
"bin": {
"monkey-typescript": "./bin/monkey-typescript"
},
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch '**/*.ts' --exec 'ts-node' index.ts",
"repl": "ts-node index.ts",
"test": "ts-node -p test.ts",
"test:live": "nodemon --watch '**/*.ts' --exec 'ts-node' test.ts",
"clean": "rm -rf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thrashr888/monkey-typescript.git"
},
"keywords": [
"typescript",
"interpreter",
"monkey",
"language",
"javascript"
],
"author": "Paul Thrasher <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thrashr888/monkey-typescript/issues"
},
"homepage": "https://github.com/thrashr888/monkey-typescript#readme",
"devDependencies": {
"@types/node": "^12.0.10",
"@types/sprintf-js": "^1.1.2",
"nodemon": "^1.19.1",
"sprintf-js": "^1.1.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}