UNPKG

1.18 kBJSONView Raw
1{
2 "name": "python-shell",
3 "version": "3.0.1",
4 "description": "Run Python scripts from Node.js with simple (but efficient) inter-process communication through stdio",
5 "keywords": [
6 "python"
7 ],
8 "scripts": {
9 "test": "tsc -p ./ && mocha -r ts-node/register",
10 "appveyorTest": "tsc -p ./ && nyc mocha --reporter mocha-appveyor-reporter test/*.js",
11 "compile": "tsc -watch -p ./"
12 },
13 "devDependencies": {
14 "@types/mocha": "^8.2.1",
15 "@types/node": "^14.17.21",
16 "@types/should": "^13.0.0",
17 "mocha": "^8.2.1",
18 "mocha-appveyor-reporter": "^0.4.0",
19 "should": "^13.2.1",
20 "ts-node": "^9.0.0",
21 "typescript": "^4.4.3"
22 },
23 "files": [
24 "*.d.ts",
25 "*.js",
26 "*.js.map",
27 "CHANGELOG.md",
28 "README.md"
29 ],
30 "repository": {
31 "type": "git",
32 "url": "http://github.com/extrabacon/python-shell"
33 },
34 "homepage": "http://github.com/extrabacon/python-shell",
35 "bugs": "http://github.com/extrabacon/python-shell/issues",
36 "author": {
37 "name": "Nicolas Mercier",
38 "email": "nicolas@extrabacon.net"
39 },
40 "engines": {
41 "node": ">=0.10"
42 },
43 "license": "MIT"
44}