-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
43 lines (43 loc) · 892 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
43
{
"name": "castl",
"version": "1.2.4",
"description": "JavaScript to Lua compiler with runtime library",
"keywords": [
"castl",
"castlua",
"lua",
"compiler",
"ast",
"transpiler"
],
"license": "LGPL-3.0",
"author": "Paul Bernier",
"repository": {
"type": "git",
"url": "http://github.com/PaulBernier/castl.git"
},
"main": "castl.js",
"scripts": {
"test": "node runTests.js"
},
"bin": {
"castl": "./bin/castl.js"
},
"dependencies": {
"acorn": "3.0.2",
"babel-core": "6.23.1",
"babel-preset-es2015": "6.22.0",
"babel-preset-es2016": "6.22.0",
"babel-preset-es2017": "6.22.0",
"commander": "2.9.0",
"esmangle": "1.0.1",
"esprima": "2.7.2"
},
"engines": {
"node": ">=0.12.0"
},
"bugs": {
"url": "http://github.com/PaulBernier/castl/issues"
},
"readmeFilename": "README.md"
}