-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 2.24 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
{
"name": "@2gis/mapgl-ruler",
"version": "2.1.0",
"description": "",
"license": "BSD-2-Clause",
"main": "dist/ruler.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "npm run clean && webpack --production && npm run build:docs && npm run build:typings",
"build-demo": "npm run clean && webpack --demo && npm run build:docs",
"build:docs": "node build/documentalist",
"build:typings": "tsc -p tsconfig.module.json --declaration --emitDeclarationOnly",
"clean": "rm -rf dist",
"dev": "webpack-dev-server",
"lint": "tslint -p tsconfig.json 'src/**/*.ts' 'demo/**/*.ts'",
"prettier": "prettier --check \"./**/*.{ts,tsx,js,json,html,css,md}\"",
"prettier:write": "prettier --write \"./**/*.{ts,tsx,js,json,html,css,md}\"",
"test:typings": "tsc -p tsconfig.typings.validation.json",
"test:unit": "jest --colors",
"test:screenshots": "webpack --test && TEST_SUITE=screenshots jest --colors",
"test:screenshots:update": "webpack --test && TEST_SUITE=screenshots jest -u",
"test": "npm run prettier && npm run lint && npm run test:unit && npm run test:screenshots",
"docker:test": "docker-compose up --build test",
"docker:screenshot:update": "docker-compose up --build screenshot-update",
"deploy-gh-pages": "npm run clean && npm run build-demo && gh-pages -d dist"
},
"devDependencies": {
"@2gis/mapgl": "^1.25.0",
"@documentalist/compiler": "^2.9.0",
"@types/jest": "^27.4.0",
"@types/jest-image-snapshot": "^4.3.1",
"@types/puppeteer": "^5.4.4",
"css-loader": "^3.6.0",
"fork-ts-checker-webpack-plugin": "^4.1.4",
"fs-extra": "^10.0.0",
"gh-pages": "^4.0.0",
"http-server": "^14.1.0",
"jest": "^27.5.1",
"jest-dev-server": "^6.0.3",
"jest-image-snapshot": "^4.5.1",
"prettier": "^2.0.5",
"puppeteer": "^13.3.2",
"raw-loader": "^2.0.0",
"sinon": "^14.0.0",
"style-loader": "^1.3.0",
"ts-jest": "^27.1.3",
"ts-loader": "^7.0.4",
"ts-sinon": "^2.0.2",
"tslib": "^2.3.1",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.5.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"wellknown": "^0.5.0"
}
}