-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.84 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
{
"name": "mockoon-webpack-plugin",
"version": "2.0.3",
"description": "A Webpack plugin based on Mockoon CLI.",
"homepage": "https://github.com/pzanella/mockoon-webpack-plugin",
"repository": {
"type": "git",
"url": "https://github.com/pzanella/mockoon-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/pzanella/mockoon-webpack-plugin/issues"
},
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"author": "Pietro Zanella <pietrozanella22@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=14"
},
"files": [
"lib/**/*",
"LICENSE.md"
],
"keywords": [
"webpack",
"plugin",
"mockoon",
"mockoon-cli",
"mock",
"mocking",
"server",
"mock-server",
"local-server",
"rest",
"api",
"test",
"testing",
"json",
"dev",
"development",
"frontend"
],
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npx tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"test": "jest --config jest.config.js",
"test:coverage": "jest --coverage --config jest.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"release": "np"
},
"dependencies": {
"@mockoon/cli": "^2.3.0",
"chalk": "4.1.2",
"find-free-ports": "^3.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"jest": "^29.3.1",
"np": "^7.6.0",
"prettier": "^2.8.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"peerDependencies": {
"webpack": ">=4.0.0"
}
}