-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 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": "5.14.0",
"description": "A small library to make SOAP requests easier",
"main": "index.js",
"types": "index.d.ts",
"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 denoland/deno test --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.15.2"
},
"devDependencies": {
"chai": "^4.5.0",
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^11.7.5",
"nock": "^13.5.6",
"nyc": "^17.1.0",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
}
}