This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.88 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
43
44
45
46
47
48
49
50
51
{
"name": "cpython",
"version": "0.10.1",
"description": "Native bindings to run python in its native interpreter.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bindings": "^1.2.1",
"glob": "^7.0.3",
"nan": "^2.3.5"
},
"devDependencies": {
"istanbul": "^0.4.3",
"tape": "^4.5.1"
},
"bin": {
"ncpy": "./bin/cpython",
"node-cpython": "./bin/cpython"
},
"scripts": {
"dev": "nodemon -e js --exec \"./node_modules/tape/bin/tape 'tests/**/*.spec.js'\"",
"clone": "git clone -b 2.7 --depth=1 https://github.com/python/cpython deps/python/2.7",
"clean": "rm -rf deps/python/2.7/{Doc,Demo,.git,bzignore,.gitignore,.hgeol,.hgignore,.hgtouch,README}",
"deep-clean": "rm -rf deps/python/2.7",
"lint": "standard lib/**/*.js",
"test": "istanbul cover ./node_modules/tape/bin/tape 'tests/**/*.spec.js'",
"posttest": "(istanbul check-coverage --statements 80 --branches 65 --functions 55 --lines 80 && rm -rf coverage) || echo Look at 'coverage/lcov-report/index.html' to find out more",
"docs": "jsdoc2md lib/node-cpython.js > docs/API.md && node -e \"var fs = require('fs');fs.writeFile('README.md', fs.readFileSync('docs/README.md'));['docs/README.md', 'docs/API.md', 'docs/LICENSE.md'].forEach(function(el){fs.appendFileSync('README.md',fs.readFileSync(el))})\"",
"preinstall": "node install.js",
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eljefedelrodeodeljefe/node-cpython.git"
},
"keywords": [
"bindings",
"native",
"cpython",
"python"
],
"author": "Robert Jefe Lindstädt <[email protected]>",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/eljefedelrodeodeljefe/node-cpython/issues"
},
"homepage": "https://github.com/eljefedelrodeodeljefe/node-cpython#readme"
}