-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 KB
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
{
"name": "python-shell",
"version": "5.0.2",
"description": "Run Python scripts from Node.js with simple (but efficient) inter-process communication through stdio",
"keywords": [
"python"
],
"scripts": {
"test": "tsc -p ./ && mocha -r ts-node/register",
"appveyorTest": "tsc -p ./ && nyc mocha test/*.js",
"compile": "tsc -watch -p ./",
"compileOnce": "tsc -p ./",
"format": "prettier --write ."
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^24.10.1",
"@types/should": "^13.0.0",
"mocha": "^11.7.5",
"prettier": "^3.6.2",
"should": "^13.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"files": [
"*.d.ts",
"*.js",
"*.js.map",
"CHANGELOG.md",
"README.md"
],
"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"
}