forked from loopbackio/strong-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.65 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
62
63
64
65
66
67
68
{
"name": "strong-soap",
"version": "1.2.6",
"description": "A minimal node SOAP client",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"compress": "^0.99.0",
"debug": "^2.2.0",
"lodash": "^4.13.1",
"uuid": "^3.0.0",
"optional": "^0.1.3",
"path": "^0.12.7",
"request": "^2.72.0",
"sax": "^1.2",
"selectn": "^1.0.20",
"strong-globalize": "^2.8.0",
"xml-crypto": "^0.8.4",
"xmlbuilder": "^8.2.2",
"httpntlm": "^1.6.1"
},
"optionalDependencies": {
"ursa": "^0.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/strong-soap.git"
},
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"toc": "./node_modules/.bin/doctoc Readme.md --github --maxlevel 3",
"_pretest": "jshint index.js lib test",
"coveralls": "nyc report --reporter=text-lcov | coveralls -v",
"test": "nyc mocha --timeout 60000 test/*-test.js test/security/*.js",
"citest": "npm test",
"postcitest": "npm run coveralls",
"pretest": "babel src -d lib",
"prepublish": "babel src -d lib"
},
"keywords": [
"soap"
],
"license": "MIT",
"devDependencies": {
"async": "^2.0.1",
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"colors": "^1.1.2",
"coveralls": "^2.11.9",
"diff": "^2.2.3",
"doctoc": "^1.1.1",
"duplexer": "^0.1.1",
"eslint": "^3.4.0",
"eslint-config-google": "^0.6.0",
"glob": "^7.0.3",
"jshint": "2.9.2",
"mocha": "^2.5.3",
"nyc": "^10.0.0",
"readable-stream": "^2.1.4",
"semver": "^5.1.0",
"should": "^9.0.0",
"timekeeper": "^0.0.5"
}
}