-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.35 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
{
"name": "@vertigis/reporting-client",
"description": "VertiGIS Studio Reporting client for the browser",
"version": "0.0.0-semantically-released",
"repository": {
"type": "git",
"url": "git+https://github.com/vertigis/vertigis-reporting-client-js.git"
},
"bugs": {
"url": "https://github.com/vertigis/vertigis-reporting-client-js/issues"
},
"homepage": "https://github.com/vertigis/vertigis-reporting-client-js#readme",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --max-warnings 0 --ext .ts,.tsx src/",
"lint:prettier": "prettier --check ./src",
"prettier": "prettier --write ./src",
"test": "jest",
"test:watch": "npm run test --watch"
}
}