forked from mitchh/python.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.json
42 lines (42 loc) · 1.07 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
40
41
42
{
"name": "python.node",
"version": "1.0.4",
"description": "Call python code from node.js.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/jonathonrp/python.node.git"
},
"bugs": {
"url": "https://github.com/jonathonrp/python.node/issues"
},
"keywords": [
"python",
"bridge",
"async"
],
"author": "Reese <[email protected]> (https://github.com/jonathonrp)",
"contributors": [
"monkeycz <[email protected]> (https://github.com/monkeycz)",
"Jean-Sébastien Tremblay <[email protected]> (http://blog.jeansebtr.com)",
"Chris Dickinson <[email protected]>"
],
"scripts": {
"test": "node test/jstest.js",
"install": "node os_specific_install.js",
"rebuild": "electron-rebuild -f -w python.node"
},
"license": "BSD",
"gypfile": true,
"dependencies": {
"bindings": "~1.1.1",
"electron-rebuild": "^1.6.0"
},
"homepage": "https://github.com/jonathonrp/python.node",
"directories": {
"test": "test"
},
"devDependencies": {
"electron-rebuild": "^1.6.0"
}
}