forked from circa10a/easy-soap-request
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 KB
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
{
"name": "easy-soap-request",
"version": "3.2.1",
"description": "A small library to make SOAP requests easier",
"main": "index.js",
"scripts": {
"bundle": "webpack --config ./webpack.config.js",
"clean": "rm -rf node_modules/",
"coverage": "export NODE_ENV=test; nyc report --reporter=text-lcov | coveralls",
"lint": "eslint '*.js' 'test/*.js'",
"lint-fix": "eslint **/*.js --fix",
"serve": "npm run bundle && webpack-dev-server --config ./webpack.config.js",
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/circa10a/easy-soap-request.git"
},
"keywords": [
"soap",
"http",
"axios",
"xml",
"wsdl"
],
"engines": {
"node": ">=7.6.0"
},
"author": "Caleb Lemoine",
"license": "MIT",
"bugs": {
"url": "https://github.com/circa10a/easy-soap-request/issues"
},
"homepage": "https://github.com/circa10a/easy-soap-request#readme",
"dependencies": {
"axios": "^0.19.2"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-mocha": "^5.3.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}