-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 876 Bytes
/
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
{
"name": "purolator-node",
"version": "1.0.0",
"description": "NodeJS wrapper for Purolator eShip services",
"main": "lib/index.js",
"author": "Mike <mibberson@3merge.ca>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "6.1.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-node-3merge": "1.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-prettier": "3.1.0",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"prettier": "1.18.2"
},
"dependencies": {
"dotenv": "^8.2.0",
"lodash.get": "^4.4.2",
"soap": "^0.30.0",
"validator": "^12.1.0",
"xml2js": "^0.4.22"
},
"scripts": {
"dev": "nodemon lib/index.js",
"lint": "eslint lib/* --fix",
"test": "jest --collectCoverage"
}
}