-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "@mapbox/carmen-core",
"version": "0.1.1",
"description": "node bindings for carmen-core",
"main": "index.js",
"engines": {
"node": ">= 10"
},
"repository": {
"type": "git",
"url": "carmen-core"
},
"author": "Aarthy Chandrasekhar <[email protected]>",
"license": "MIT",
"dependencies": {
"neon-cli": "^0.2.0",
"node-pre-gyp": "~0.13.0"
},
"devDependencies": {
"@mapbox/cfn-config": "^2.15.0",
"@mapbox/cloudfriend": "^1.9.1",
"codecov": "^3.3.0",
"d3-queue": "^3.0.7",
"neon-cli": "^0.2.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 && codecov"
},
"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/"
}
}