-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.66 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
{
"name": "yaml-server",
"version": "1.10.0",
"engines": {
"node": ">=8.3.0"
},
"bin": {
"yaml-server": "./src/index.js"
},
"description": "A command line tool that creates a REST server from a YAML file that you specify",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"premake-badge": "$(npm bin)/jest --coverage",
"make-badge": "$(npm bin)/coverage-badges",
"toc": "npx markdown-toc README.md",
"lint": "npx eslint ./src/**"
},
"jest": {
"coverageReporters": [
"text",
"lcov",
"json-summary",
"cobertura"
]
},
"keywords": [
"YAML",
"YML",
"server",
"fake",
"REST",
"API",
"prototyping",
"mock",
"mocking",
"test",
"testing",
"rest",
"data"
],
"repository": {
"type": "git",
"url": "https://github.com/softchris/yaml-server.git"
},
"homepage": "https://softchris.github.io/yaml-server.html",
"bugs": {
"url": "https://github.com/softchris/yaml-server/issues"
},
"author": "Chris Noring (https://softchris.github.io)",
"contributors": [
{
"name": "chris noring",
"url": "https://softchris.github.io"
}
],
"license": "MIT",
"dependencies": {
"chalk": "^4.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"opn": "^6.0.0",
"yaml": "^1.9.2",
"yargs": "^15.3.1"
},
"devDependencies": {
"coverage-badges": "^1.0.4",
"eslint": "^7.0.0",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^26.0.1",
"markdown-toc": "^1.2.0",
"supertest": "^4.0.2"
}
}