-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "@random-guys/lux",
"version": "4.2.0",
"description": "Abstract a soap service as a class",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"watch": "tsc -w -p ./tsconfig.json",
"test": "jest --detectOpenHandles --runInBand --forceExit"
},
"author": "Olakunle Arewa <olakunle.arewa@gmail.com>",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bunyan": "^1.8.12",
"lodash": "^4.17.15",
"soap": "^0.27.1",
"xml-js": "^1.6.11"
},
"files": [
"dist/"
],
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.149",
"@types/node": "^10.14.4",
"@types/supertest": "^2.0.7",
"jest": "^24.8.0",
"supertest": "^3.4.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/random-guys/lux.git"
},
"bugs": {
"url": "https://github.com/random-guys/lux/issues"
},
"homepage": "https://github.com/random-guys/lux#readme"
}