-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
50
{
"name": "hertzscript-compiler",
"version": "0.0.10",
"description": "Produces preemptible JavaScript coroutines which conform to the HertzScript specification.",
"keywords": [
"javascript",
"preemption",
"preemptive",
"preemptible",
"interruption",
"green-threads",
"coroutines",
"coroutine",
"coroutine-dispatcher",
"concurrency",
"concurrent",
"concurrent-programming",
"concurrent-javascript",
"stackless-coroutines",
"multitasking",
"cooperative-multitasking",
"preemptive-multitasking",
"voluntary-preemtive-multitasking"
],
"homepage": "https://github.com/Floofies/hertzscript-compiler#readme",
"repository": {
"type": "git",
"url": "https://github.com/Floofies/hertzscript-compiler.git"
},
"bugs": {
"url": "https://github.com/Floofies/hertzscript-compiler/issues"
},
"main": "src/compile.js",
"author": "Dani Glore (https://github.com/Floofies)",
"contributors": [
"Thomas G. (https://github.com/trgwii)"
],
"license": "MIT",
"bin": {
"hzc": "./bin/compileCLI.js",
"hzcompile": "./bin/compileCLI.js"
},
"dependencies": {
"acorn": "^6.0.4",
"acorn-walk": "^6.1.1",
"@babel/core": "",
"command-line-args": "^5.0.2",
"escodegen": "^1.11.0"
}
}