forked from extrabacon/python-shell
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 699 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 699 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
{
"name": "python-shell",
"version": "0.0.3",
"description": "Run Python scripts from Node.js with simple (but efficient) inter-process communication through stdio",
"keywords": [
"python"
],
"scripts": {
"test": "mocha -R spec"
},
"dependencies": {},
"devDependencies": {
"should": "^3.1.3",
"mocha": "^1.17.1"
},
"repository": {
"type": "git",
"url": "http://github.com/extrabacon/python-shell"
},
"homepage": "http://github.com/extrabacon/python-shell",
"bugs": "http://github.com/extrabacon/python-shell/issues",
"author": {
"name": "Nicolas Mercier",
"email": "nicolas@extrabacon.net"
},
"engines": {
"node": ">=0.10"
}
}