-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
39 lines (39 loc) · 1.03 KB
/
package.json
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
{
"name": "python-bridge",
"version": "1.1.0",
"description": "Node.js to Python bridge ✨🐍🚀✨",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "npm run lint:ts",
"lint:ts": "tslint --project tsconfig.json --type-check",
"test": "npm run lint && npm run test:js && npm run test:ts",
"test:js": "tap test.js",
"test:ts": "tsc --lib ES2015 test_typescript.ts && tap test_typescript.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Submersible/node-python-bridge.git"
},
"bugs": {
"url": "https://github.com/Submersible/node-python-bridge/issues"
},
"homepage": "https://github.com/Submersible/node-python-bridge#readme",
"keywords": [
"python",
"bridge",
"ipc"
],
"author": "Ryan Munro <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0"
},
"devDependencies": {
"@types/node": "^8.0.14",
"tap": "^10.7.0",
"temp": "^0.8.3",
"tslint": "^5.5.0",
"typescript": "^2.4.1"
}
}