UNPKG

1.21 kBJSONView Raw
1{
2 "name": "python-shell",
3 "version": "5.0.0",
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 "compileOnce": "tsc -p ./"
13 },
14 "devDependencies": {
15 "@types/mocha": "^8.2.1",
16 "@types/node": "^14.17.21",
17 "@types/should": "^13.0.0",
18 "mocha": "^8.2.1",
19 "mocha-appveyor-reporter": "^0.4.0",
20 "should": "^13.2.1",
21 "ts-node": "^9.0.0",
22 "typescript": "^4.4.3"
23 },
24 "files": [
25 "*.d.ts",
26 "*.js",
27 "*.js.map",
28 "CHANGELOG.md",
29 "README.md"
30 ],
31 "repository": {
32 "type": "git",
33 "url": "http://github.com/extrabacon/python-shell"
34 },
35 "homepage": "http://github.com/extrabacon/python-shell",
36 "bugs": "http://github.com/extrabacon/python-shell/issues",
37 "author": {
38 "name": "Nicolas Mercier",
39 "email": "nicolas@extrabacon.net"
40 },
41 "engines": {
42 "node": ">=0.10"
43 },
44 "license": "MIT"
45}