-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.27 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "xspy",
"version": "0.0.4",
"main": "./dist/xspy.es5.min.js",
"types": "./dist/types",
"author": "Izumi Hoshino <rindo.hinase@gmail.com>",
"license": "MIT",
"description": "Hook ajax(fetch/xhr) request and/or response. Modify header, body, status, credentials, etc in request/response",
"keywords": [
"fetch",
"XMLHttpRequest",
"ajax",
"hook",
"spy",
"proxy",
"dummy",
"intercept",
"mock",
"modify"
],
"files": [
"dist/types/",
"dist/xspy.es5.min.js",
"dist/xspy.min.js",
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"homepage": "https://hinaser.github.io/xspy/",
"repository": {
"type": "git",
"url": "https://github.com/Hinaser/xspy"
},
"bugs": "https://github.com/Hinaser/xspy/issues",
"scripts": {
"test": "node ./test/bin/runBrowser.js",
"test:ci": "node ./test/index.js",
"build": "webpack --config webpack.dev.js && webpack --config webpack.dev.es5.js && yarn instrument",
"build:prod": "webpack --config webpack.prod.js && webpack --config webpack.prod.es5.js",
"tsc": "tsc --emitDeclarationOnly --declaration --project tsconfig.json --declarationDir ./dist/types",
"coverage": "node ./test/index.js && yarn coverage:report",
"coverage:report": "nyc report --reporter=lcov --reporter=text --temp-dir ./test/coverage --report-dir ./test/coverage && yarn fixLcov",
"fixLcov": "node test/bin/fixLcovInfo.js",
"instrument": "nyc instrument ./dist/xspy.js > ./test/dist/xspy.js",
"tsdoc": "typedoc src/XSpy.ts --mode file --excludePrivate --excludeProtected --excludeNotExported --out docs --includeVersion --gaID UA-91245492-8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.2.1",
"expect.js": "^0.3.1",
"express": "^4.17.1",
"fork-ts-checker-webpack-plugin": "^5.0.14",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"parallel-webpack": "^2.6.0",
"puppeteer": "^5.2.1",
"terser-webpack-plugin": "^4.0.0",
"ts-loader": "^8.0.2",
"typedoc": "^0.18.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {}
}