forked from PythonJS/PythonJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (49 loc) · 931 Bytes
/
package.json
File metadata and controls
51 lines (49 loc) · 931 Bytes
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
51
{
"author": "Brett Hartshorn <goatman.py@gmail.com>",
"name": "python-js",
"description": "python multi-translator: javascript, dart, coffee, lua, vis.js",
"version": "0.9.7",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/PythonJS/PythonJS.git"
},
"keywords": [
"pythonjs",
"python",
"dart",
"lua",
"transpiler"
],
"dependencies": {
"workerjs": "*",
"requirejs": "*",
"long" : "*"
},
"engines": {
"node": "*"
},
"preferGlobal":true,
"main": "./python-js",
"bin" : {"python-js" : "./cli.js"},
"files": [
"lib",
"fakelibs",
"empythoned.js",
"python-js",
"pythonjs.js",
"pythonjs.py",
"python_to_pythonjs.py",
"ministdlib.py",
"pythonjs_to_dart.py",
"pythonjs_to_coffee.py",
"pythonjs_to_lua.py",
"python_to_visjs.py",
"code_writer.py",
"inline_function.py",
"ast_utils.py",
"typedpython.py",
"cli.js",
"runtime"
]
}