-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.9 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
{
"main": "index.js",
"scripts": {
"configure": "node-pre-gyp configure",
"build": "node-pre-gyp build",
"clean": "node-pre-gyp clean",
"test": "mocha",
"install": "node-pre-gyp install --fallback-to-build || (npm run build:fastcommon && npm run build:shmcache && npm run build:libbson && node-pre-gyp install --fallback-to-build)",
"build:fastcommon": "cd deps/libfastcommon && MACOSX_DEPLOYMENT_TARGET=10.7 ./make.sh",
"build:shmcache": "cd deps/libshmcache/src && MACOSX_DEPLOYMENT_TARGET=10.7 LIBRARY_PATH=../../libfastcommon/src INC_PATH=\" -I../../libfastcommon/src\" make -e",
"build:libbson": "cd deps/ && MACOSX_DEPLOYMENT_TARGET=10.7 ./build-libbson.sh",
"trim": "cd deps/ && rm -rf libbson/.git && rm -rf libshmcache/.git && rm -rf libfastcommon/.git && rm libbson/.gitignore && rm libbson/README && cp libbson/README.rst libbson/README"
},
"binary": {
"module_name": "shm-cache",
"module_path": "./binding",
"host": "https://github.com/denghongcai/node-shm-cache/releases/download/",
"remote_path": "{version}"
},
"devDependencies": {
"mocha": "^3.2.0",
"node-pre-gyp-github": "^1.3.1"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.1",
"node-gyp": "^3.8.0",
"node-pre-gyp": "^0.6.39"
},
"gypfile": true,
"name": "shm-cache",
"description": "[![Build Status](https://travis-ci.org/denghongcai/node-shm-cache.svg)](https://travis-ci.org/denghongcai/node-shm-cache)",
"version": "2.1.1",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denghongcai/node-shm-cache.git"
},
"keywords": [
"shm",
"cache"
],
"author": "Hongcai Deng",
"license": "MIT",
"bugs": {
"url": "https://github.com/denghongcai/node-shm-cache/issues"
},
"homepage": "https://github.com/denghongcai/node-shm-cache#readme",
"engines": {
"node": ">=8"
}
}