-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "easy-soap-request",
"version": "5.6.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 .",
"lint-fix": "eslint . --fix",
"serve": "npm run bundle && webpack-dev-server --config ./webpack.config.js",
"test": "nyc mocha **/*test.js",
"test-deno": "docker run --rm -it -v $PWD:/tmp -w /tmp hayd/alpine-deno test --unstable --allow-read --allow-net test/*.d.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/circa10a/easy-soap-request.git"
},
"keywords": [
"soap",
"http",
"axios",
"xml",
"wsdl"
],
"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": "^1.6.7"
},
"devDependencies": {
"chai": "^4.3.10",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.2.0",
"mocha": "^10.2.0",
"nock": "^13.5.1",
"nyc": "^15.1.0",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}