This repository was archived by the owner on Feb 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 KB
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-gl-regex-query",
"version": "0.2.1",
"description": "Query source data using regex",
"main": "dist/mapbox-gl-regex-query.js",
"author": "Kristofor Carle <kris@maphubs.com>",
"repository": {
"type": "git",
"url": "https://github.com/maphubs/mapbox-gl-regex-query"
},
"homepage": "https://github.com/maphubs/mapbox-gl-regex-query",
"bugs": "https://github.com/maphubs/mapbox-gl-regex-query/issues",
"license": "BSD-3-Clause",
"browserify": {
"transform": [
"unflowify",
[
"bubleify",
{
"bubleError": true,
"transforms": {
"dangerousForOf": true
}
}
],
"package-json-versionify",
"unassertify",
"brfs"
]
},
"scripts": {
"test": "",
"build-dev": "mkdir -p dist && browserify src/index.js --debug --ignore-transform unassertify --standalone RegexQuery > dist/mapbox-gl-regex-query-dev.js",
"build-min": "mkdir -p dist && browserify src/index.js --debug --plugin [minifyify --map mapbox-gl-regex-query.js.map --output dist/mapbox-gl-regex-query.js.map] --standalone RegexQuery | derequire > dist/mapbox-gl-regex-query.js"
},
"dependencies": {},
"peerDependencies": {
"mapbox-gl": ">=0.37.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"browserify": "^14.3.0",
"derequire": "^2.0.6",
"eslint": "^3.19.0",
"eslint-config-mourner": "^2.0.1",
"eslint-plugin-flowtype": "^2.32.1",
"flow-bin": "^0.45.0",
"flow-remove-types": "^1.2.1",
"mapbox-gl": "^0.43.0",
"minifyify": "^7.3.5"
},
"keywords": [
"MapboxGL",
"mapbox-gl"
]
}