This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.67 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": "numero-securitesociale",
"version": "2.1.0",
"repository": {
"type": "git",
"url": "git://github.com/mathrobin/numero-securitesociale.git"
},
"description": "Parseur de numéro de sécurité sociale",
"bugs": {
"url": "https://github.com/mathrobin/numero-securitesociale/issues"
},
"type": "module",
"homepage": "https://github.com/mathrobin/numero-securitesociale",
"main": "index.js",
"author": "MathRobin <mthrobin@gmail.com>",
"license": "MIT",
"packageManager": "yarn@4.2.2",
"domains": [],
"scripts": {
"commit": "cz",
"jest": "jest --coverage",
"lint": "eslint -c eslint.config.js",
"prepare": "husky install",
"prettier": "prettier --check ./",
"prettier:write": "prettier --write ./",
"test": "yarn node --experimental-vm-modules $(yarn bin jest) --runInBand --config jest.config.js"
},
"engines": {
"node": "22.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "7.24.5",
"@babel/eslint-parser": "7.24.5",
"@babel/plugin-syntax-import-assertions": "7.24.1",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@jest/globals": "29.7.0",
"@types/jest": "29.5.12",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.2.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.5.0",
"eslint-plugin-json": "3.1.0",
"globals": "15.2.0",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"prettier": "3.2.5"
}
}