-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
96 lines (96 loc) · 3.01 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "puppeteer-request-spy",
"version": "1.4.0",
"description": "watch, fake, modify or block requests from puppeteer matching patterns",
"main": "build/src/index.js",
"scripts": {
"clean": "node task/clean.js",
"pregenerate-typings": "npm run clean",
"generate-typings": "tsc -p tsconfig.json -d",
"preupdate-typings": "npm run generate-typings",
"update-typings": "node task/copyTypes.js",
"prebuild": "node_modules/.bin/tslint --project tsconfig-lint.json && npm run clean",
"prebuild-dev": "npm run prebuild",
"build": "node_modules/.bin/tsc -p tsconfig.json",
"build-dev": "node_modules/.bin/tsc -p tsconfig.json --sourcemap",
"pretest": "npm run build",
"test": "node_modules/.bin/mocha --timeout 10000 --require source-map-support/register build/test/**/*.spec.js",
"pretest-coverage": "npm run build-dev",
"pretest-silent-full": "npm run build",
"test-silent-full": "node_modules/.bin/mocha --timeout 10000 --require source-map-support/register build/test/**/*.spec.js > test-ts.log",
"test-coverage": "node_modules/.bin/nyc --all --reporter=html npm run test-silent",
"pretest-coverage-travis": "npm run build-dev",
"test-silent": "node_modules/.bin/mocha --timeout 10000 --require source-map-support/register build/test/**/*.dev.spec.js > test-ts.log",
"test-coverage-travis": "node_modules/.bin/nyc --all --reporter=text-lcov npm run test-silent | node node_modules/coveralls/bin/coveralls.js",
"prerelease-dry": "npm run update-typings && npm run test-silent-full",
"release-dry": "npm pack"
},
"engines": {
"node": ">=6.4.0"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"build/src/**/*.js"
],
"exclude": [
"**/Logger.js",
"**/index.js",
"**/interface/*.js",
"**/types/*.js"
],
"reporter": [
"html"
],
"all": true
},
"keywords": [
"puppeteer",
"request",
"spy",
"testing",
"test",
"chrome",
"headless"
],
"types": "types/index.d.ts",
"author": "Tobias Nießen",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/koa": "^2.11.4",
"@types/koa-bodyparser": "^4.3.0",
"@types/mime-types": "^2.1.0",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.0",
"@types/nock": "^9.3.1",
"@types/node": "^10.0.4",
"@types/puppeteer": "^1.3.1",
"@types/sinon": "^4.3.1",
"clear-module": "^3.1.0",
"coveralls": "^3.0.1",
"del": "^3.0.0",
"fs-extra": "^7.0.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"mime-types": "^2.1.27",
"minimatch": "^3.0.4",
"mocha": "^5.1.1",
"nock": "^10.0.6",
"nyc": "^11.7.1",
"puppeteer": "^1.20.0",
"sinon": "^4.5.0",
"source-map-support": "^0.5.5",
"ts-node": "^7.0.1",
"tslint": "^5.8.0",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^3.3.3333"
},
"repository": {
"type": "git",
"url": "https://github.com/Tabueeee/puppeteer-request-spy.git"
}
}