-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "sales-tax",
"description": "International sales tax calculator for Node (offline, but provides optional online VAT number fraud check). Tax rates are kept up-to-date.",
"version": "2.16.0",
"homepage": "https://github.com/valeriansaliou/node-sales-tax",
"license": "MIT",
"author": {
"name": "Valerian Saliou",
"email": "valerian@valeriansaliou.name",
"url": "https://valeriansaliou.name/"
},
"repository": {
"type": "git",
"url": "git://github.com/valeriansaliou/node-sales-tax.git"
},
"bugs": {
"url": "https://github.com/valeriansaliou/node-sales-tax/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/valeriansaliou/node-sales-tax/blob/master/LICENSE"
}
],
"main": "lib/sales_tax.js",
"types": "types/sales_tax.d.ts",
"engines": {
"node": ">= 6.4.0"
},
"scripts": {
"test": "check-build && tsc && istanbul cover _mocha"
},
"dependencies": {
"cross-fetch": "4.0.0",
"validate-vat": "0.9.0",
"jsvat": "2.5.3",
"ein-validator": "1.0.1"
},
"devDependencies": {
"check-build": "2.8.2",
"typescript": "4.9.x",
"mocha": "3.3.0",
"mocha-lcov-reporter": "1.3.0",
"istanbul": "0.4.5"
},
"keywords": [
"sales",
"tax",
"salestax",
"money",
"billing",
"invoice",
"vat",
"gst",
"vatmoss"
]
}