-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
42 lines (42 loc) · 948 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
33
34
35
36
37
38
39
40
41
42
{
"name": "rapydscript-ng",
"description": "Pythonic JavaScript that doesn't suck",
"homepage": "https://github.com/kovidgoyal/rapydscript-ng",
"keywords": [
"javascript",
"rapydscript",
"language",
"compiler"
],
"main": "tools/compiler.js",
"scripts": {
"test": "node bin/rapydscript self --complete --test",
"start": "node bin/rapydscript",
"build-self": "node bin/rapydscript self --complete"
},
"version": "0.7.22",
"license": "BSD-2-Clause",
"engines": {
"node": ">=0.12.0"
},
"maintainers": [
{
"name": "Kovid Goyal",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/kovidgoyal/rapydscript-ng.git"
},
"dependencies": {
"regenerator": ">= 0.12.1",
"uglify-js": ">= 3.0.15"
},
"optionalDependencies": {
"v8-profiler": ">= 5.2.9"
},
"bin": {
"rapydscript": "bin/rapydscript"
}
}