-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@8pattern/jmock",
"version": "0.2.0",
"description": "a mock server for JS",
"scripts": {
"dev": "ts-node-dev ./src",
"prebuild": "tsc && npm run test",
"build": "webpack --mode=production",
"test": "jest",
"test:watch": "jest --watch",
"publish": "npm run build && npm publish --access=public --registry http://registry.npmjs.org"
},
"keywords": [
"mock",
"http",
"websocket"
],
"author": "8th-pattern",
"license": "MIT",
"main": "./dist/jmock.js",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-typescript": "^7.6.0",
"@types/express": "^4.17.1",
"@types/express-ws": "^3.0.0",
"@types/jest": "^24.0.18",
"@types/mockjs": "^1.0.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"terser-webpack-plugin": "^2.1.0",
"ts-jest": "^24.1.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.6.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"@8pattern/jcommand": "^0.1.0",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"mockjs": "^1.0.1-beta3"
},
"bin": {
"jmock": "jmock-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8th-pattern/jMock.git"
},
"bugs": {
"url": "https://github.com/8th-pattern/jMock/issues"
},
"homepage": "https://github.com/8th-pattern/jMock#readme"
}