-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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": "tile-stencil",
"version": "0.4.12",
"description": "Load a MapLibre style document and parse it into Javascript functions",
"main": "dist/tile-stencil.js",
"module": "src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "eslint --no-error-on-unmatched-pattern src examples/*/*.js",
"build": "rollup -c build/rollup.config.js",
"test": "npm run lint",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GlobeletJS/tile-stencil.git"
},
"keywords": [
"MapLibre",
"style",
"parse"
],
"author": "Jeshurun Hembd",
"license": "MIT",
"bugs": {
"url": "https://github.com/GlobeletJS/tile-stencil/issues"
},
"homepage": "https://github.com/GlobeletJS/tile-stencil#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"eslint": "^8.12.0",
"eslint-config-globeletjs": "^0.0.6",
"rollup": "^2.70.1"
},
"dependencies": {
"d3-color": "3.1.0"
}
}