forked from avadev/AvaTax-REST-V2-JS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.3 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
{
"name": "avatax",
"version": "22.3.0",
"description": "AvaTax v2 SDK for languages using JavaScript",
"main": "index.js",
"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",
"test": "jest",
"lint": "eslint lib/**/*.js test/**/*.js --cache",
"format": "prettier --single-quote --write ./test/**/*.js ./lib/*.js ./lib/**/*.js",
"publish": "npm publish ./.build"
},
"keywords": [
"avalara",
"avatax"
],
"author": "Justin Soliz, Genevieve Conty",
"license": "Apache-2.0",
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"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",
"node-uuid": "^1.4.8",
"prettier": "^1.4.4"
}
}