forked from LevyForchh/carmen-core
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "@mapbox/carmen-core",
"version": "0.5.0",
"description": "node bindings for carmen-core",
"main": "index.js",
"engines": {
"node": ">= 14"
},
"repository": {
"type": "git",
"url": "carmen-core"
},
"author": "Aarthy Chandrasekhar <[email protected]>",
"license": "MIT",
"dependencies": {
"neon-cli": "^0.7.0",
"node-pre-gyp": "~0.13.0"
},
"devDependencies": {
"@mapbox/cfn-config": "^2.15.0",
"@mapbox/cloudfriend": "^1.9.1",
"d3-queue": "^3.0.7",
"neon-cli": "^0.7.0",
"nyc": "^14.0.0",
"tape": "^4.10.2"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build=false || neon build --release",
"build": "neon build --release",
"test": "tape ./tests/bindings/*",
"coverage": "nyc node -e \"require('.')\" && nyc report --reporter=text-lcov > coverage.lcov"
},
"binary": {
"module_name": "index",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./node-carmen-core/v{version}/{configuration}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./native/"
}
}