-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
104 lines (104 loc) · 2.09 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
{
"name": "smoke",
"version": "3.1.1",
"description": "Simple yet powerful file-based mock server with recording abilities",
"repository": {
"type": "git",
"url": "https://github.com/sinedied/smoke.git"
},
"main": "lib/smoke.js",
"bin": {
"smoke": "./bin/smoke",
"smoke-conv": "./bin/smoke-conv"
},
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"start": "smoke test/mocks",
"test": "xo && jest",
"release:check": "semantic-release --dry-run"
},
"keywords": [
"mock",
"server",
"api",
"file",
"file-based",
"json",
"rest",
"template"
],
"author": {
"name": "Yohan Lasorsa",
"url": "https://twitter.com/sinedied"
},
"homepage": "https://github.com/sinedied/smoke",
"bugs": {
"url": "https://github.com/sinedied/smoke/issues"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "2.8.5",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"import-fresh": "^3.2.1",
"lodash.template": "^4.5.0",
"mime-types": "^2.1.27",
"minimist": "^1.2.5",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"path-to-regexp": "^6.1.0"
},
"devDependencies": {
"jest": "^26.4.2",
"semantic-release": "^17.3.1",
"semantic-release-npm-github": "^1.0.4",
"supertest": "^6.0.1",
"xo": "^0.37.1"
},
"xo": {
"space": true,
"prettier": true,
"envs": [
"node",
"jest"
],
"ignores": [
"test/mocks/**/*"
],
"rules": {
"unicorn/prevent-abbreviations": "off",
"unicorn/no-array-reduce": "off"
}
},
"jest": {
"collectCoverageFrom": [
"*.js",
"lib/**/*.js"
],
"silent": true,
"verbose": true
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false
},
"release": {
"extends": "semantic-release-npm-github",
"branches": "main"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"smoke-cli.js",
"smoke-conv-cli.js",
"bin",
"lib",
"test/hooks.js",
"ssl"
]
}