forked from anuraghazra/ToyLang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "toylang",
"version": "1.0.1",
"description": "A toy programming language built with TypeScript for learning purposes",
"homepage": "https://github.com/anuraghazra/ToyLang",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"dev": "ts-node index",
"prebuild": "rimraf dist",
"build": "tsc",
"prepublish": "npm run build",
"example": "ts-node examples/runner"
},
"devDependencies": {
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1"
},
"dependencies": {
"@types/jest": "^26.0.23",
"typescript": "^4.2.4"
},
"keywords": [
"toy",
"programming-language",
"parser",
"typescript",
"interpreter"
],
"author": "Anurag Hazra <[email protected]>",
"license": "MIT",
"repository": "github:anuraghazra/ToyLang",
"bugs": {
"url": "https://github.com/anuraghazra/ToyLang/issues"
},
"funding": [
{
"type": "individual",
"url": "https://www.paypal.me/anuraghazra"
},
"https://www.buymeacoffee.com/anuraghazra"
]
}