forked from RobinBuschmann/express-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "express-soap",
"version": "1.1.2",
"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"
},
"peerDependencies": {
"express": "4.x",
"soap": "^0.24.0"
},
"devDependencies": {
"@types/chai": "3.4.34",
"@types/mocha": "2.2.39",
"@types/sinon": "1.16.34",
"@types/sinon-chai": "2.7.27",
"@types/supertest": "2.0.0",
"@types/xml2js": "0.0.32",
"chai": "3.5.0",
"express": "4.16.4",
"mocha": "6.0.2",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"soap": "0.26.0",
"supertest": "3.0.0",
"ts-node": "6.0.0",
"tslint": "4.4.2",
"typescript": "2.1.5",
"xml2js": "0.4.17"
},
"dependencies": {
"@types/express": "4.0.35",
"@types/soap": "0.21.0"
}
}