-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "@torch-ai/mapbox-gl-plugin-unmapped-items",
"version": "1.0.1",
"description": "Provides a flexible system for displaying a count as list with reasons of items that could not be added to the map",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "npm run-script build:clean && npm run-script build:rollup",
"build:clean": "rimraf dist/*",
"build:rollup": "rollup -c",
"start": "npm run-script build:clean && rollup -cw",
"prepare": "npm t && npm run-script build"
},
"author": "Lance Gliser",
"license": "MIT",
"repository": {
"url": "https://github.com/torch-ai/mapbox-gl-plugin-unmapped-items",
"type": "git"
},
"devDependencies": {
"@types/jest": "^24.0.24",
"@types/mapbox-gl": "^1.10.2",
"dotenv": "^8.2.0",
"jest": "^25.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"rollup": "^1.27.13",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^25.2.1",
"tslib": "^1.10.0",
"typescript": "^3.9.5"
},
"dependencies": {
"mapbox-gl": "^1.10.0"
}
}