-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "taxjar",
"version": "4.1.0",
"description": "TaxJar Sales Tax API for Node",
"homepage": "https://github.com/taxjar/taxjar-node",
"author": "TaxJar <jake@taxjar.com> (https://www.taxjar.com/)",
"license": "MIT",
"bugs": "https://github.com/taxjar/taxjar-node/issues",
"contributors": [
"Jake Johnson <jake@taxjar.com>",
"Scott Rudiger <scott.rudiger@taxjar.com>"
],
"keywords": [
"taxjar",
"sales tax",
"sales tax calculations",
"sales tax rates",
"api"
],
"repository": {
"type": "git",
"url": "git://github.com/taxjar/taxjar-node.git"
},
"engines": {
"node": ">= 10"
},
"main": "dist/taxjar.js",
"files": [
"dist/**",
"!dist/.DS_Store"
],
"types": "dist/taxjar.d.ts",
"devDependencies": {
"@types/node-fetch": "^2.6.2",
"chai": "^4.3.7",
"chai-stuff": "^0.3.3",
"eslint": "^8.32.0",
"mocha": "^10.2.0",
"nock": "^13.3.0",
"typescript": "~4.9.4"
},
"dependencies": {
"node-fetch": "^2.6.8"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"lint": "eslint",
"test": "tsc && mocha"
}
}