-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
60 lines (60 loc) · 1.8 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
{
"name": "avatax",
"version": "24.12.0",
"description": "AvaTax v2 SDK for languages using JavaScript",
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://github.com/avadev/AvaTax-REST-V2-JS-SDK",
"repository": {
"type": "git",
"url": "git://github.com/avadev/AvaTax-REST-V2-JS-SDK.git"
},
"scripts": {
"build": "rm -rf ./.build && babel lib -d .build/lib && babel index.js --out-file .build/index.js && cp package.json ./.build && cp README.md ./.build",
"build-win": "babel lib -d .build/lib && babel index.js --out-file .build/index.js && copy package.json .build && copy README.md .build",
"build-tsc": "tsc && cp package.json .build && cp README.md .build",
"build-tsc-win": "tsc && copy package.json .build && copy README.md .build",
"test": "jest",
"lint": "eslint lib/**/*.js test/**/*.js --cache",
"format": "prettier --single-quote --write ./test/**/*.js ./lib/*.js ./lib/**/*.js",
"npm-publish": "cd .build && npm publish && cd .."
},
"keywords": [
"avalara",
"avatax"
],
"typesVersions": {
"*": {
"index": [
"index.d.ts"
],
"models": [
"lib/models.d.ts"
],
"enums": [
"lib/enums.d.ts"
]
}
},
"author": "Justin Soliz, Genevieve Conty",
"license": "Apache-2.0",
"dependencies": {
"form-data": "^4.0.0",
"json2typescript": "^1.5.1",
"node-fetch": "^2.6.7",
"@types/node-fetch": "^2.6.2"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.19.50",
"babel-cli": "^6.22.2",
"babel-jest": "^18.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"eslint": "^4.0.0",
"jest": "^18.1.0",
"moment": "^2.20.1",
"nock": "^9.0.2",
"prettier": "^1.4.4"
}
}