forked from extrabacon/python-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 903 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 903 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
{
"name": "python-shell",
"version": "0.4.0",
"description": "Run Python scripts from Node.js with simple (but efficient) inter-process communication through stdio",
"keywords": [
"python"
],
"scripts": {
"test": "mocha -R spec",
"appveyorTest": "mocha --ui tdd --reporter mocha-appveyor-reporter test/*.js"
},
"dependencies": {},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^9.3.0",
"should": "^13.2.1",
"mocha": "^5.0.0",
"mocha-appveyor-reporter": "^0.4.0"
},
"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"
},
"license": "MIT"
}