forked from lula/ngx-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.92 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": "ngx-soap",
"version": "0.1.5",
"description": "SOAP service for Angular4",
"main": "bundles/ngx-soap.umd.js",
"typings": "src/index.d.ts",
"moduleName": "ngx-soap",
"scripts": {
"transpile": "ngc",
"bundle": "rimraf dist && npm run transpile && rollup -c rollup.config.umd.js",
"postbundle": "node tools/bundle-scripts/remove-code.js",
"minify": "uglifyjs dist/bundles/ngx-soap.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ngx-soap.umd.min.js",
"build": "npm run bundle && npm run copy",
"copy": "node tools/bundle-scripts/copy-files.js && node tools/bundle-scripts/cleanup.js"
},
"keywords": [
"Angular",
"Angular2",
"Angular4",
"@angular",
"SOAP"
],
"author": "Luca Lulani",
"license": "MIT",
"readme": "README.md",
"homepage": "https://github.com/lula/ngx-soap",
"bugs": {
"url": "https://github.com/lula/ngx-soap/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lula/ngx-soap.git"
},
"devDependencies": {
"@angular/compiler": "^4.2.2",
"@angular/compiler-cli": "^4.2.2",
"@angular/core": "^4.2.2",
"@angular/http": "^4.2.2",
"@types/assert": "0.0.31",
"@types/lodash": "^4.14.66",
"@types/node": "^8.0.6",
"@types/sax": "^1.0.0",
"@types/strip-bom": "^3.0.0",
"@types/uuid": "^3.0.0",
"assert": "^1.4.1",
"buffer": "^5.0.6",
"concat-stream": "^1.6.0",
"crypto-js": "^3.1.9-1",
"debug": "^2.6.8",
"del": "^3.0.0",
"events": "^1.1.1",
"lodash": "^4.17.4",
"rollup": "^0.43.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rxjs": "^5.0.1",
"sax": "^1.2.4",
"selectn": "^1.1.2",
"strip-bom": "^3.0.0",
"typescript": "^2.3.4",
"uglify-js": "^3.0.17",
"url": "^0.11.0",
"util": "^0.10.3",
"uuid": "^3.1.0",
"zone": "^0.3.4",
"zone.js": "^0.8.12"
}
}