-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "quadbin",
"version": "0.2.0",
"description": "Utility functions for working with Quadbins",
"license": "MIT",
"type": "module",
"source": "./src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"umd:main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"keywords": [
"quadbin",
"webgl",
"visualization"
],
"repository": {
"type": "git",
"url": "https://github.com/CartoDB/quadbin-js.git"
},
"scripts": {
"clean": "rm -rf \"dist/*\"",
"build": "microbundle --name quadbin --format cjs,modern,umd --no-compress",
"build:watch": "microbundle watch --name quadbin --format cjs,modern,umd --no-compress",
"lint": "prettier --check src",
"test": "yarn lint && yarn test-fast",
"test-fast": "tsx node_modules/tape/bin/tape test/**/*.spec.js",
"postversion": "yarn postversion:check && yarn postversion:commit && yarn postversion:push",
"postversion:check": "yarn lint && yarn test",
"postversion:commit": "node scripts/postversion-commit.js",
"postversion:push": "git push && git push --tags",
"prepublish": "yarn lint && yarn test",
"prepack": "yarn clean && yarn build"
},
"browser": {
"jsdom": false
},
"devDependencies": {
"@types/geojson": "^7946.0.15",
"@types/semver": "^7",
"microbundle": "^0.15.1",
"prettier": "^3.4.2",
"semver": "^7.6.3",
"tape": "^5.3.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
},
"browserslist": [
"defaults",
"not IE 11",
"node >= 18"
],
"dependencies": {
"@mapbox/tile-cover": "3.0.1",
"@math.gl/web-mercator": "^4.1.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "20.18.2",
"yarn": "4.3.1"
}
}