This repository has been archived by the owner on Oct 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "@mapbox/carmen-cache",
"license": "BSD-2-Clause",
"author": "Mapbox (https://www.mapbox.com)",
"url": "http://github.com/mapbox/carmen-cache",
"repository": {
"url": "git://github.com/mapbox/carmen-cache.git",
"type": "git"
},
"version": "0.27.0",
"dependencies": {
"nan": "~2.10.0",
"node-pre-gyp": "~0.10.1"
},
"scripts": {
"test": "tape test/*.test.js bench/*.js && eslint *.js test/*.js bench/*.js",
"lint": "eslint *.js test/*.js bench/*.js",
"bench": "tape bench/*.js",
"install": "node-pre-gyp install --fallback-to-build",
"docs": "documentation build src/*.cpp --polyglot -f md -o API.md"
},
"eslintConfig": {
"plugins": [
"tape"
],
"extends": [
"@mapbox/eslint-config-geocoding"
],
"rules": {
"tape/assertion-message": [
"error",
"always"
],
"tape/use-t": "error",
"tape/use-test": "error"
}
},
"devDependencies": {
"@mapbox/eslint-config-geocoding": "^1.0.1",
"aws-sdk": "^2.55.0",
"documentation": "^4.0.0-beta5",
"eslint": "^4.17.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-tape": "1.1.0",
"tape": "^4.6.3"
},
"main": "./index.js",
"description": "C++ protobuf cache used by carmen",
"binary": {
"module_name": "carmen",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}/{configuration}/{toolset}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./lib/"
}
}