-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.25 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@pipcook/boa",
"version": "2.1.0",
"description": "Use Python modules seamlessly in Node.js",
"main": "lib/index.js",
"scripts": {
"clean": "sh tools/clean-python.sh && make -C ./pybind11/ clean",
"predeps": "tools/check-dependence.js",
"deps": "make -C ./pybind11/ && tools/install-python.js",
"preinstall": "npm install @mapbox/node-pre-gyp",
"install": "node-pre-gyp install --fallback-to-build=false || npm run build",
"pretest": "npm run lint && ./.miniconda/bin/pip install numpy==1.17.4",
"test": "ava",
"cov": "nyc --reporter=text-summary npm run test",
"cov:report": "nyc report -r=lcov",
"lint": "npm run lint:js && npm run lint:clang",
"lint:js": "eslint . -c .eslintrc.js --no-eslintrc",
"lint:clang": "./clang-format.py",
"build": "npm run deps && npm run compile",
"pre-gyp": "node-pre-gyp package",
"codecov": "nyc report --reporter=lcovonly && codecov",
"htmlcov": "nyc report --reporter=html",
"compile": "node-pre-gyp rebuild"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/alibaba/pipcook.git"
},
"keywords": [
"python",
"pybind11"
],
"gypfile": true,
"author": "Yorkie Liu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alibaba/pipcook/issues"
},
"homepage": "https://github.com/alibaba/pipcook#readme",
"ava": {
"extensions": [
"js",
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.3",
"debug": "^4.1.1",
"node-addon-api": "^3.0.0"
},
"devDependencies": {
"@types/node": "^14.14.37",
"ava": "^3.13.0",
"codecov": "^3.6.5",
"eslint": "^7.15.0",
"nyc": "^15.1.0",
"ts-node": "^8.6.2",
"typescript": "^4.2.3"
},
"publishConfig": {
"access": "public"
},
"bin": {
"bip": "./tools/bip.js"
},
"binary": {
"module_name": "boa",
"module_path": "./binding/v{napi_build_version}",
"package_name": "{module_name}-v{version}-{platform}-{arch}-napi-v{napi_build_version}.tar.gz",
"host": "https://boa-binary.oss-cn-hangzhou.aliyuncs.com",
"bucket": "boa-binary",
"region": "oss-cn-hangzhou",
"napi_versions": [
6
]
}
}