-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.84 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
76
77
78
{
"name": "@accountable/jsvat",
"version": "1.3.4",
"description": "Check the validity of the format of a VAT number",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.cjs"
}
}
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.cjs",
"type": "module",
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npx rollup -c rollup.config.js",
"test": "jest",
"semantic-release": "semantic-release",
"prepack": "npm run build"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Accountable-SA/accountable-jsvat"
},
"keywords": [
"npm",
"javascript",
"typescript",
"vat",
"vat number",
"vat number validation",
"vat number validator",
"vat number checker",
"vat number check",
"vat number format",
"vat number format validation",
"vat-number",
"eu-vat-number",
"vat-number-validation"
],
"author": "accountable.eu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Accountable-SA/accountable-jsvat/issues"
},
"homepage": "https://github.com/Accountable-SA/accountable-jsvat#readme",
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.2",
"@swc/core": "^1.3.22",
"@swc/jest": "^0.2.23",
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"rollup": "^3.28.1",
"semantic-release": "^21.0.7",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^4.7.4"
}
}