-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "validate-documents",
"version": "1.2.7",
"description": "Validate CPF and CNPJ",
"main": "dist/index.js",
"types": "dist/types",
"files": [
"dist"
],
"author": {
"name": "Ramon Paolo Maram",
"url": "https://github.com/ramonpaolo"
},
"repository": {
"type": "git",
"directory": "validation-documents",
"url": "https://github.com/ramonpaolo/validation-documents.git"
},
"license": "MIT",
"private": false,
"keywords": [
"validation-documents",
"typescript"
],
"scripts": {
"prepublish": "rm -rf dist && tsc",
"test": "jest ./src --ci --reporters=default --reporters=jest-junit",
"linter": "yarn eslint ./src"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"babel-jest": "^29.3.1",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.3.1",
"jest-junit": "^12.0.0",
"ts-node": "^10.9.1",
"typescript": "*"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " > ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}