forked from basslagter/webpack-mock-dev-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
{
"name": "webpack-mock-dev-server",
"version": "1.3.0",
"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.16.1",
"@types/minimatch": "^3.0.3",
"@types/node": "^11.11.5",
"standard-version": "^5.0.2",
"typescript": "^3.3.4000"
},
"dependencies": {
"minimatch": "^3.0.4"
}
}