-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.58 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
{
"name": "@sngular/api-mock-runner",
"version": "1.0.1",
"description": "Create mocks servers with its schemas from OpenAPI 3.0.0 spec files",
"main": "src/index.js",
"bin": {
"api-mock-runner": "src/index.js"
},
"type": "module",
"exports": {
".": {
"types": "./dist-types/index.d.ts",
"default": "./src/index.js"
}
},
"files": [
"dist-types",
"src",
"CHANGELOG.md"
],
"scripts": {
"start": "node .",
"test": "mocha -- test --reporter spec",
"test:coverage": "c8 --all --include=src --exclude=src/types --exclude=src/index.js --reporter=cobertura --reporter=text npm run test",
"test:coverage:html": "c8 --all --include=src --exclude=src/types --exclude=src/index.js --reporter=html --reporter=text npm run test",
"lint": "npm run lint:check",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"format": "npm run format:check",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"types": "npm run types:check",
"types:build": "tsc --build --pretty",
"types:check": "tsc --pretty",
"prepare": "npx husky install",
"prepublishOnly": "npm run types:build",
"release": "npx semantic-release",
"reset": "rm -rf .apimockrc && rm -rf .api-mock-runner",
"check": "npm run lint:check && npm run format:check && npm run types:check && npm test"
},
"author": "SNGULAR",
"license": "MPL-2.0",
"dependencies": {
"@inquirer/checkbox": "^1.0.0",
"@inquirer/confirm": "^2.0.0",
"@inquirer/input": "^1.0.0",
"@sngular/open-api-mocker": "^1.0.0",
"commander": "^11.0.0"
},
"devDependencies": {
"@esm-bundle/chai": "^4.0.0",
"@sngular/commitlint-config": "^1.0.0",
"@sngular/eslint-config": "^1.0.0",
"@sngular/lint-staged-config": "^1.0.0",
"@sngular/prettier-config": "^1.0.0",
"@sngular/semantic-release-config": "^1.0.0",
"@sngular/tsconfig": "^1.0.0",
"@types/mocha": "^10.0.0",
"@types/sinon": "^10.0.0",
"@types/sinon-chai": "^3.0.0",
"c8": "^8.0.0",
"chai-as-promised": "^7.0.0",
"eslint-config-prettier": "^9.0.0",
"esmock": "^2.0.0",
"husky": "^8.0.0",
"mocha": "^10.0.0",
"mock-fs": "^5.0.0",
"sinon": "^16.0.0",
"sinon-chai": "^3.0.0"
},
"publishConfig": {
"access": "public"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sngular/api-mock-runner.git"
},
"keywords": [
"api",
"openApi",
"mock",
"mocking",
"mock-server",
"microservices",
"schema"
],
"bugs": {
"url": "https://github.com/sngular/api-mock-runner/issues"
},
"homepage": "https://github.com/sngular/api-mock-runner#readme"
}