-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "express-soap",
"version": "1.1.4",
"description": "Express middleware based upon node-soap",
"main": "index.js",
"scripts": {
"build": "tsc && tsc --project test",
"pretest": "npm run build",
"test": "mocha 'test/specs/**/*.js'",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinBuschmann/express-soap.git"
},
"author": "Robin Baum <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/RobinBuschmann/express-soap/issues"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"express": "4.x",
"soap": "^0.45.0"
},
"devDependencies": {
"@types/chai": "4.3.1",
"@types/mocha": "9.1.1",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@types/supertest": "2.0.12",
"@types/xml2js": "0.4.11",
"chai": "4.3.6",
"express": "4.18.1",
"mocha": "10.0.0",
"sinon": "14.0.0",
"sinon-chai": "3.7.0",
"soap": "0.45.0",
"supertest": "6.2.3",
"tslint": "5.20.1",
"typescript": "4.7.4",
"xml2js": "0.4.23"
},
"dependencies": {
"@types/express": "4.17.13"
}
}