forked from vpulim/node-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.55 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "soap",
"version": "0.24.0",
"description": "A minimal node SOAP client",
"engines": {
"node": ">=4.0.0"
},
"author": "Vinay Pulim <[email protected]>",
"dependencies": {
"bluebird": "^3.5.0",
"concat-stream": "^1.5.1",
"debug": "^2.6.9",
"ejs": "~2.5.5",
"finalhandler": "^1.0.3",
"lodash": "^4.17.5",
"request": ">=2.9.0",
"sax": ">=0.6",
"serve-static": "^1.11.1",
"strip-bom": "~0.3.1",
"uuid": "^3.1.0",
"xml-crypto": "~0.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/milewise/node-soap.git"
},
"main": "./index.js",
"types": "./lib/soap.d.ts",
"directories": {
"lib": "./lib"
},
"scripts": {
"toc": "./node_modules/.bin/doctoc Readme.md --github --maxlevel 3",
"pretest": "jshint index.js lib test",
"cover": "nyc --reporter=lcov --reporter=html --reporter=text mocha test/*-test.js test/security/*.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
"test": "mocha --timeout 10000 test/*-test.js test/security/*.js"
},
"keywords": [
"soap"
],
"license": "MIT",
"devDependencies": {
"body-parser": "^1.15.2",
"colors": "^1.1.2",
"coveralls": "^2.11.6",
"diff": "^2.2.1",
"doctoc": "^1.0.0",
"duplexer": "~0.1.1",
"express": "^4.14.0",
"glob": "~3.2.8",
"jshint": "2.3.0",
"mocha": "~1.17.0",
"nyc": "^11.4.1",
"readable-stream": "~2.0.2",
"semver": "~5.0.3",
"should": "~3.3.0",
"sinon": "^1.17.5",
"timekeeper": "~0.0.4"
}
}