This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
91 lines (91 loc) · 2.05 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
{
"name": "@meeshkanml/micro-jaymock",
"version": "1.0.1",
"description": "Tiny API mocking microservice, using jaymock.",
"main": "index.ts",
"scripts": {
"dev": "micro-dev local/index.ts",
"test": "xo && tsc && ava",
"coverage": "nyc npm test",
"coverage:upload": "nyc report --reporter=lcov && codecov",
"coverage:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100"
},
"files": [
"index.ts",
"local/index.ts",
"tsconfig.json",
"demo.gif",
"favicon.png"
],
"engines": {
"node": "12.x"
},
"xo": {
"extends": "xo-typescript",
"extensions": [
"ts"
],
"rules": {
"@typescript-eslint/semi": "off",
"@typescript-eslint/return-await": "off",
"new-cap": [
"error",
{
"newIsCap": false
}
]
},
"ignores": [
"*.js",
"*.d.ts",
"*/*.d.ts",
"*/*/*.d.ts"
]
},
"ava": {
"babel": {
"compileEnhancements": false
},
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Meeshkan/micro-jaymock.git"
},
"author": "Meeshkan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Meeshkan/micro-jaymock/issues"
},
"homepage": "https://github.com/Meeshkan/micro-jaymock#readme",
"dependencies": {
"@meeshkanml/jaymock": "^1.1.0",
"chance": "^1.1.3",
"micro": "^9.3.4",
"micro-dev": "^3.0.0",
"serve-marked": "^2.0.2",
"ts-node": "^8.5.4",
"typescript": "^3.8.3"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@meeshkanml/freddo": "^1.2.2",
"@types/micro": "^7.3.3",
"@types/node": "^12.12.30",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"ava": "^3.5.0",
"codecov": "^3.8.2",
"eslint-config-xo-typescript": "^0.23.0",
"got": "^10.6.0",
"image-type": "^4.1.0",
"nyc": "^15.1.0",
"test-listen": "^1.1.0",
"xo": "^0.25.4"
}
}