-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.53 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
{
"name": "@2gis/mapgl-gltf",
"version": "2.1.0",
"description": "Plugin for the rendering glTF models with MapGL",
"main": "dist/bundle.js",
"typings": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/2gis/mapgl-gltf.git"
},
"files": [
"dist/types",
"dist/docs.json",
"dist/*.LICENSE.txt"
],
"scripts": {
"build": "npm run build:bundle && npm run build:typings && npm run build:transpile && npm run build:docs",
"build:bundle": "webpack --env type=production",
"build:docs": "node build/documentalist",
"build:typings": "tsc -p tsconfig.typings.json --declaration --emitDeclarationOnly",
"build:transpile": "tsc -p tsconfig.transpile.json --declaration",
"dev": "webpack-dev-server --env type=development",
"test": "npm run test:unit && npm run test:integration && npm run test:screenshots",
"test:unit": "jest --colors",
"test:integration": "webpack --env type=test && TEST_SUITE=integration jest --colors",
"test:screenshots": "webpack --env type=test && TEST_SUITE=screenshots jest --colors",
"test:screenshots:watch": "webpack --env type=test && TEST_SUITE=screenshots jest --colors --watchAll",
"test:screenshots:update": "webpack --env type=test && TEST_SUITE=screenshots jest -u",
"test:typings": "tsc -p tsconfig.typings.validation.json",
"demo": "webpack --env type=demo",
"prettier": "prettier --check \"./**/*.{ts,js,html,css}\"",
"prettier:write": "prettier --write \"./**/*.{ts,js,html,css}\"",
"docker:test": "docker-compose up --build test",
"docker:screenshot:update": "docker-compose up --build screenshot-update"
},
"author": "2GIS WebMaps Team",
"license": "BSD-2-Clause",
"devDependencies": {
"@2gis/mapgl": "^1.52.0",
"@documentalist/compiler": "^2.8.1",
"@types/geojson": "^7946.0.10",
"@types/jest": "^27.4.0",
"@types/jest-image-snapshot": "^4.3.1",
"@types/puppeteer": "^5.4.4",
"@types/sinon": "^17.0.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^3.6.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"jest": "^27.5.1",
"jest-dev-server": "^6.0.3",
"jest-image-snapshot": "^4.5.1",
"prettier": "^2.8.7",
"puppeteer": "^13.3.2",
"raw-loader": "^4.0.2",
"sinon": "^19.0.2",
"style-loader": "^1.3.0",
"ts-jest": "^27.1.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}