-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "webpack-mock-dev-server",
"version": "2.0.1",
"description": "Mocks webpack dev server request in an easy configurable way",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basslagter/webpack-mock-dev-server.git"
},
"keywords": [
"dev-server",
"webpack",
"mock",
"stub",
"api",
"configurable",
"easy"
],
"author": "Bas Slagter",
"license": "ISC",
"bugs": {
"url": "https://github.com/basslagter/webpack-mock-dev-server/issues"
},
"homepage": "https://github.com/basslagter/webpack-mock-dev-server#readme",
"devDependencies": {
"@types/express": "^4.17.2",
"@types/minimatch": "^3.0.3",
"@types/node": "^12.12.17",
"standard-version": "^8.0.1",
"typescript": "^3.7.3"
},
"dependencies": {
"lodash": "^4.17.15",
"minimatch": "^3.0.4"
}
}