-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.34 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
{
"name": "comuni-province-regioni",
"version": "0.4.3",
"description": "a package containing definitions for all the entities recognised as \"Comune\", \"Provincia\" and \"Regione\" in Italy",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/veeso/comuni-province-regioni.git"
},
"author": "Christian Visintin <christian.visintin@veeso.dev>",
"license": "MIT",
"private": false,
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig-build.json",
"prepublish": "yarn build",
"preversion": "yarn lint && yarn prettier:check",
"version": "yarn build",
"lint": "eslint --ext .ts src --max-warnings=0",
"lint:fix": "eslint --ext .ts src --fix",
"prettier": "prettier --config .prettierrc --write \"src/**/*.{ts,js,json,md}\"",
"prettier:check": "prettier --config .prettierrc --check \"src/**/*.{ts,js,json,md}\"",
"test": "jest --no-watchman"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}