forked from taxjar/taxjar-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "taxjar",
"version": "3.2.0",
"description": "TaxJar Sales Tax API for Node",
"homepage": "https://github.com/taxjar/taxjar-node",
"author": "TaxJar <[email protected]> (https://www.taxjar.com/)",
"license": "MIT",
"bugs": "https://github.com/taxjar/taxjar-node/issues",
"contributors": [
"Jake Johnson <[email protected]>",
"Scott Rudiger <[email protected]>"
],
"keywords": [
"taxjar",
"sales tax",
"sales tax calculations",
"sales tax rates",
"api"
],
"repository": {
"type": "git",
"url": "git://github.com/taxjar/taxjar-node.git"
},
"engines": {
"node": ">= 4"
},
"main": "dist/taxjar.js",
"files": [
"dist/**",
"!dist/.DS_Store"
],
"types": "dist/taxjar.d.ts",
"devDependencies": {
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.16",
"chai": "^4.2.0",
"chai-stuff": "^0.3.2",
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"typescript": "^2.9.2"
},
"dependencies": {
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "tsc && mocha"
}
}