-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "console-log-server",
"version": "0.4.0",
"description": "Logs all http requests to console",
"main": "dist",
"jsnext:main": "src",
"engines": {
"node": ">=0.10"
},
"files": [
"dist",
"src",
"vendor"
],
"bin": {
"console-log-server": "./dist/cli.js"
},
"scripts": {
"babel": "babel src -d dist",
"babel-node": "babel-node --presets @babel/preset-env",
"build": "npm run header && npm run check && npm run babel && npm run --silent permissions",
"header": "header src/index.js",
"permissions": "chmod +x src/cli.js dist/cli.js",
"start": "nodemon --exec npm run babel-node -- ./src/index.js",
"prettier": "prettier-standard ./src/**/*.js",
"format": "npm run prettier",
"check": "npm run prettier -- --lint --check && tsc",
"test": "ava",
"test:coverage": "nyc --require esm-wallaby ava",
"test:compatibility": "./test/bootstrap_compatibility_test.sh",
"test:compatibility:all": "npm run test:compatibility -- v0.10 && npm run test:compatibility -- v0.12 && npm run test:compatibility -- v2 && npm run test:compatibility -- v4 && npm run test:compatibility -- v6 && npm run test:compatibility -- v8 && npm run test:compatibility -- v10 && npm run test:compatibility -- v12 && npm run test:compatibility -- v14"
},
"ava": {
"require": [
"esm-wallaby"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamonkko/console-log-server.git"
},
"keywords": [
"log",
"console",
"rest",
"http",
"request",
"stub",
"server",
"debug",
"mock"
],
"author": "Jarkko Mönkkönen <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/jamonkko/console-log-server#readme",
"bugs": {
"url": "https://github.com/jamonkko/console-log-server/issues"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/cors": "^2.8.10",
"@types/dateformat": "^3.0.1",
"@types/express": "^4.17.12",
"@types/express-http-proxy": "^1.6.1",
"@types/express-xml-bodyparser": "^0.3.2",
"@types/lodash": "^4.14.170",
"@types/meow": "^3.6.2",
"@types/mime-types": "^2.1.0",
"@types/pretty-data": "^0.40.0",
"@types/prettyjson": "0.0.29",
"ava": "^3.15.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.14.0",
"esm-wallaby": "^3.2.25",
"module-header": "github:jamonkko/module-header#replace-existing",
"nodemon": "^1.10.2",
"nyc": "^15.1.0",
"prettier-standard": "^16.4.1",
"rxjs": "^7.8.1",
"stream-buffers": "^3.0.2",
"supertest": "^6.1.3",
"typescript": "^4.2.4"
},
"dependencies": {
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"core-js": "^3.13.1",
"cors": "^2.8.5",
"dateformat": "^3.0.3",
"es6-promise": "^4.2.8",
"express": "^4.14.0",
"express-http-proxy": "github:jamonkko/express-http-proxy#es5",
"express-xml-bodyparser": "github:jamonkko/express-xml-bodyparser#support-older-node",
"lodash": "^4.17.21",
"meow": "^3.7.0",
"mime-types": "^2.1.12",
"mockdate": "^3.0.5",
"parse-headers": "^2.0.3",
"prepend-http": "1.0.4",
"pretty-data": "^0.40.0",
"prettyjson": "^1.1.3",
"sorted-object": "^2.0.1"
},
"overrides": {
"find-parent-dir": "0.3.1"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist/*"
]
}
}