-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "tin-int-validator",
"version": "1.0.3",
"description": "based of: https://ec.europa.eu/taxation_customs/tin/#/check-tin",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare" : "npm run build",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint",
"test": "LOG_LEVEL=Debug jest --testTimeout 50000 --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/jlvcm/tin-int-validator"
},
"files": [
"lib/**/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-check-file": "^2.3.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"prettier": {
"semi": true,
"endOfLine": "lf",
"tabWidth": 2,
"printWidth": 140,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "avoid",
"singleQuote": true
}
}