forked from johniak/browser-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 867 Bytes
/
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
{
"name": "browser-soap",
"version": "1.0.4",
"description": "A minimal SOAP client in javascript, so tiny it even runs in browser",
"engines": {
"node": ">=0.8.0"
},
"author": "Johniak <[email protected]>",
"dependencies": {
"node-xml": "^1.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/johniak/browser-soap.git"
},
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"build": "bna -f index.js && uglifyjs index.fused.js -b > browser-soap.js && rm index.fused.js",
"build-min": "bna -f index.js && uglifyjs index.fused.js -c -m > browser-soap-min.js && rm index.fused.js"
},
"keywords": [
"soap",
"browser",
"client"
],
"licenses": [
{
"type": "MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
]
}