forked from piecioshka/xhr-sniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "xhr-sniffer",
"description": "Sniff HTTP requests making by XHR in the browser or HTTP module in Node.js",
"version": "1.0.3",
"license": "MIT",
"author": {
"name": "Piotr Kowalski",
"email": "piecioshka@gmail.com",
"url": "https://piecioshka.pl/"
},
"scripts": {
"clear": "rm -rf coverage/",
"clear:all": "rm -rf node_modules/ && npm run clear",
"test": "npm run test:unit",
"test:unit": "jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
"coverage": "nyc npm run test && nyc report --reporter=html",
"coveralls": "nyc npm run test && nyc report --reporter=text-lcov | coveralls -v",
"count": "find . -name '*.js' -not -path './node_modules/*' -not -path './coverage/*' | xargs wc -l | sort -r",
"lint": "eslint src/ demo/",
"deploy": "gh-pages -d ."
},
"devDependencies": {
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-piecioshka": "^2.0.2",
"gh-pages": "^2.2.0",
"jasmine": "^3.5.0",
"nock": "^12.0.3",
"node-fetch": "^2.6.0",
"nyc": "^15.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/piecioshka/xhr-sniffer"
},
"files": [
"demo",
"src",
"package.json",
"README.md"
],
"keywords": [
"sniff",
"sniffer",
"sniffing",
"xmlhttprequest",
"request",
"xhr",
"node",
"nodejs",
"http",
"https",
"protocol"
],
"main": "./src/server.js",
"dependencies": {}
}