-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
126 lines (126 loc) · 4.1 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@carto/web-sdk",
"version": "1.0.0-alpha.3",
"description": "CARTO Web SDK",
"repository": {
"type": "git",
"url": "git://github.com/CartoDB/web-sdk.git"
},
"keywords": [],
"author": "",
"license": "BSD-3-Clause",
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"directories": {
"lib": "src",
"example": "examples"
},
"types": "dist/types/index.d.ts",
"scripts": {
"prettify": "prettier --write 'src/**/*.ts'",
"lint": "eslint 'src/**/*{.ts,.tsx}' --no-error-on-unmatched-pattern",
"lint:fix": "eslint 'src/**/*{.ts,.tsx}' --fix --no-error-on-unmatched-pattern",
"prebuild": "rimraf dist/",
"build": "npm run build:esm && npm run build:cjs && npm run build:umd",
"build:esm": "BABEL_ENV=ESM npx babel --source-maps --config-file ./babel.config.js --out-dir dist/esm --extensions '.ts' ./src",
"build:cjs": "BABEL_ENV=COMMONJS npx babel --source-maps --config-file ./babel.config.js --out-dir dist/cjs --extensions '.ts' ./src",
"build:umd": "webpack --config webpack.config.js",
"build:watch": "webpack --config webpack.config.js --watch ",
"prewatch": "rimraf dist/",
"prerelease": "npm run build && npm run test",
"release": "npx release-it && ./scripts/publish-release.sh",
"release:dry-run": "npx release-it --dry-run && ./scripts/publish-release.sh --dry-run",
"release:cdn": "npm run build && ./scripts/publish-release.sh",
"release:cdn:branch": "npm run build && ./scripts/publish-branch-cdn.sh",
"serve": "live-server --port=6001 --watch=dist/umd",
"test": "jest --config jest.config.js ./src --coverage",
"test:watch": "jest --watch ./src"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@danmarshall/deckgl-typings": "^4.3.2",
"@salte-auth/popup": "1.0.0-rc.2",
"@salte-auth/salte-auth": "3.0.0-rc.8",
"@types/chroma-js": "^2.0.0",
"@types/geojson": "^7946.0.7",
"@types/googlemaps": "^3.39.3",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"acorn": "^7.1.1",
"aws-sdk": "^2.709.0",
"babel-plugin-global-define": "^1.0.3",
"babel-plugin-module-resolver": "^4.0.0",
"current-git-branch": "^1.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"fastly": "^2.2.1",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"install": "^0.13.0",
"jest": "^26.0.1",
"jest-environment-jsdom-fifteen": "^1.0.0",
"jest-fetch-mock": "^2.1.2",
"lint-staged": "^10.1.7",
"lodash.camelcase": "^4.3.0",
"npm": "^6.14.5",
"prettier": "2.0.5",
"release-it": "^13.6.4",
"rimraf": "^3.0.0",
"sanitize-filename": "^1.6.3",
"source-map-loader": "^0.2.4",
"ts-jest": "^26.0.1",
"ts-loader": "^7.0.5",
"tslint": "^5.20.0",
"typescript": "^3.9.5",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@deck.gl/core": "8.2.0",
"@deck.gl/extensions": "8.2.0",
"@deck.gl/geo-layers": "8.2.0",
"@deck.gl/google-maps": "8.2.0",
"@deck.gl/layers": "8.2.0",
"@deck.gl/mesh-layers": "8.2.0",
"@loaders.gl/core": "^2.2.5",
"@loaders.gl/mvt": "^2.2.5",
"@luma.gl/core": "8.2.0",
"@mapbox/vector-tile": "^1.3.1",
"@math.gl/core": "3.2.1",
"cartocolor": "^4.0.2",
"chroma-js": "^2.1.0",
"deepmerge": "^4.2.2",
"live-server": "^1.2.1",
"mitt": "^1.2.0",
"pbf": "3.2.1"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
]
}
}