-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.82 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
{
"name": "@essamonline/whatwg-xhr",
"version": "1.0.0",
"description": "A Node.js implementation of the WHATWG XMLHttpRequest Living Standard for non-browser environmnts.",
"type": "module",
"main": "./lib/whatwg-xhr.js",
"exports": {
"require": "./lib/whatwg-xhr.cjs",
"import": "./lib/whatwg-xhr.js"
},
"scripts": {
"test" : "npm run testVerb",
"testVerb" : "node test/wpt-xhr.test.js -n -v",
"testVerbCov" : "node --experimental-test-coverage test/wpt-xhr.test.js -n -v",
"testSilent" : "node --experimental-test-coverage test/wpt-xhr.test.js -d",
"testCli" : "node --experimental-test-coverage test/wpt-xhr.cmd.test.js",
"devCovRep" : "node --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=docs/coverage/node/lcov.info --test",
"devCovHtml" : "genhtml -o docs/coverage/node/html --config-file .lcovrc --prefix $PWD docs/coverage/node/lcov.info",
"devDoc" : "jsdoc lib/whatwg-xhr.js lib/helper/*.js test/wpt-xhr*.js -d docs/jsdoc/ -c .jsdoc.conf.json --verbose",
"devDocAll" : "rm -vfr docs/jsdoc/* && npm run devDoc",
"devCoveralls": "coveralls < docs/coverage/node/lcov.info"
},
"bin": {
"wpt-xhr": "bin/wpt-xhr"
},
"engines": {
"node": ">=15.4.0",
"os": [
"linux",
"win32"
]
},
"keywords": [
"xmlhttprequest",
"xhr",
"ajax",
"whatwg"
],
"author": {
"name" : "Essam A. El-Sherif",
"email": "esm.elsh@gmail.com",
"url" : "https://essamatefelsherif.github.io/whoami/"
},
"homepage": "https://github.com/essamatefelsherif/whatwg-xhr#readme",
"repository": {
"type": "git",
"url" : "git+https://github.com/essamatefelsherif/what-xhr.git"
},
"license": "MIT",
"dependencies": {
"html-encoding-sniffer": "^4.0.0",
"whatwg-encoding": "^3.1.1"
},
"devDependencies": {
"coveralls-next": "^4.2.1",
"jsdoc": "^4.0.4"
}
}