-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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": "mockiavelli",
"version": "1.0.0",
"description": "HTTP request mocking library for Puppeteer and Playwright",
"keywords": [
"mock",
"puppeteer",
"playwright",
"mocking",
"http"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"release": "semantic-release"
},
"dependencies": {
"debug": "^4.3.7",
"lodash.isequal": "^4.5.0",
"path-to-regexp": "^8.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"@types/debug": "^4.1.12",
"@types/jest": "^24.9.1",
"@types/lodash.isequal": "^4.5.8",
"factory.ts": "^0.5.2",
"husky": "^1.3.1",
"jest": "^24.9.0",
"jest-junit": "^6.4.0",
"playwright": "^1.47.0",
"prettier": "^2.8.8",
"pretty-quick": "^1.11.1",
"puppeteer": "^10.0.0",
"semantic-release": "^17.4.7",
"ts-jest": "^24.3.0",
"typescript": "^3.9.10"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/HLTech/mockiavelli.git"
},
"homepage": "https://github.com/HLTech/mockiavelli",
"bugs": {
"url": "https://github.com/HLTech/mockiavelli/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}