-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.99 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
{
"name": "@pagopa/data-indexer-commons",
"version": "0.3.3",
"description": "Common library for io-platform data-indexer",
"author": "IO Platform team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pagopa/data-indexer-commons.git"
},
"bugs": {
"url": "https://github.com/pagopa/data-indexer-commons/issues"
},
"homepage": "https://github.com/pagopa/data-indexer-commons#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"source": "src/index",
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"changelog": "yarn auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"after:bump": "yarn auto-changelog -p && git add ."
},
"npm": {
"publish": false
},
"github": {
"release": true
},
"plugins": {}
},
"scripts": {
"lint": "eslint \"src/**\"",
"build": "tsc",
"watch": "tsc -w",
"test": "jest --coverage --passWithNoTests ./src",
"test:coverage": "jest --coverage",
"code-review": "yarn lint && yarn test",
"release": "release-it"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
]
},
"dependencies": {
"@pagopa/ts-commons": "^12.4.1",
"fp-ts": "^2.16.1",
"io-ts": "^2.2.21",
"io-ts-types": "^0.5.19"
},
"devDependencies": {
"@pagopa/eslint-config": "^3.0.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/jest": "^29.5.11",
"auto-changelog": "^2.4.0",
"eslint-plugin-prettier": "^5.0.1",
"release-it": "^17.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}