This repository has been archived by the owner on Jun 18, 2019. It is now read-only.
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.19.1",
"description": "A minimal node SOAP client",
"engines": {
"node": ">=6.0"
},
"dependencies": {
"compress": "^0.99.0",
"debug": "^4.1.1",
"httpntlm": "^1.7.6",
"lodash": "^4.13.1",
"optional": "^0.1.3",
"path": "^0.12.7",
"request": "^2.72.0",
"sax": "^1.2",
"selectn": "^1.0.20",
"strong-globalize": "^4.1.3",
"uuid": "^3.2.1",
"xml-crypto": "^1.4.0",
"xmlbuilder": "^10.1.1"
},
"optionalDependencies": {
"strong-ursa": "^0.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/strong-soap.git"
},
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"toc": "doctoc Readme.md --github --maxlevel 3",
"_pretest": "jshint index.js lib test",
"coveralls": "nyc report --reporter=text-lcov | coveralls -v",
"test": "nyc --reporter=html mocha --exit --timeout 60000 test/*-test.js test/security/*.js",
"citest": "npm test",
"postcitest": "npm run coveralls",
"pretest": "babel src -d lib",
"prepare": "babel src -d lib"
},
"keywords": [
"soap"
],
"license": "MIT",
"devDependencies": {
"async": "^2.6.2",
"babel-cli": "^6.9.0",
"babel-preset-env": "^1.6.1",
"colors": "^1.3.3",
"coveralls": "^3.0.3",
"diff": "^4.0.1",
"doctoc": "^1.4.0",
"duplexer": "^0.1.1",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"glob": "^7.0.3",
"jshint": "^2.10.2",
"mocha": "^5.2.0",
"nyc": "^14.0.0",
"readable-stream": "^3.3.0",
"semver": "^6.0.0",
"should": "^13.2.1",
"timekeeper": "^2.2.0"
}
}