This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 2.35 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
{
"name": "generator-http-fake-backend",
"version": "4.1.0",
"description": "Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.",
"homepage": "https://github.com/micromata/generator-http-fake-backend",
"author": {
"name": "Michael Kühnel",
"email": "m.kuehnel@micromata.de",
"url": "http://micromata.de"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"generators"
],
"main": "generators/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"security": "nsp check",
"prepublishOnly": "npm run security",
"lint": "eslint . --fix",
"pretest": "npm run lint",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"release": "npm run security && standard-version --tag-prefix",
"release:patch": "npm run security && standard-version --tag-prefix --release-as patch",
"release:minor": "npm run security && standard-version --tag-prefix --release-as minor",
"release:major": "npm run security && standard-version --tag-prefix --release-as major"
},
"keywords": [
"fake",
"api",
"http",
"backend",
"yeoman-generator",
"micromata",
"server",
"rest",
"restful",
"data",
"mocks",
"mocking",
"mock"
],
"dependencies": {
"chalk": "2.3.1",
"command-exists": "^1.2.2",
"nsp": "^3.2.1",
"superb": "2.0.0",
"title-case": "^2.1.1",
"yeoman-generator": "^2.0.2",
"yosay": "^2.0.1"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"eslint": "^4.18.0",
"eslint-config-xo-space": "^0.18.0",
"jest": "^22.3.0",
"jest-cli": "^22.3.0",
"standard-version": "^4.3.0",
"yeoman-assert": "^3.1.0",
"yeoman-test": "1.7.0"
},
"eslintConfig": {
"extends": "xo-space/esnext",
"env": {
"jest": true
}
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/generators/app/templates"
],
"collectCoverage": true,
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"generators/app/**/*.js",
"!generators/app/templates/**/*.js"
],
"coverageReporters": [
"lcov",
"html",
"text",
"text-summary"
]
},
"repository": "micromata/generator-http-fake-backend",
"license": "MIT"
}