-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.75 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": "puppeteer-vcr",
"version": "0.1.3",
"description": "Record requests and replay them for stable puppeteer testing",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/**/*.*",
"README.md"
],
"repository": "https://github.com/superpro-inc/puppeteer-vcr",
"author": "Harry Brundage",
"license": "MIT",
"private": false,
"scripts": {
"release": "yarn run build && yarn publish --access public",
"build": "tsc",
"watch": "tsc --watch",
"lint": "tsc --noEmit && prettier --check \"src/**/*.ts\" \"test/**/*.ts\" && eslint --ext js,ts,tsx src test",
"lintfix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" && eslint --ext js,ts,tsx --fix src test",
"texec": "ts-node --files"
},
"dependencies": {
"@types/await-timeout": "^0.3.1",
"@types/cookie": "^0.3.3",
"@types/fast-json-stable-stringify": "^2.0.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.0",
"@types/puppeteer": "^2.0.0",
"@types/set-cookie-parser": "^0.0.6",
"async-mutex": "^0.1.4",
"await-timeout": "^1.1.1",
"cookie": "^0.4.0",
"deep-object-diff": "^1.1.0",
"farmhash": "^3.0.0",
"fast-json-stable-stringify": "^2.1.0",
"lodash": "^4.17.15",
"mkdirp": "^1.0.3",
"puppeteer": "2.1.0",
"sanitize-filename": "^1.6.3",
"set-cookie-parser": "^2.4.3",
"typed-emitter": "^0.2.0"
},
"devDependencies": {
"@fixings/eslint-config": "^2.0.0",
"@fixings/prettier-config": "^1.0.0",
"@types/jest": "^25.1.1",
"@types/tmp": "^0.1.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"ndb": "^1.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}