-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 1.86 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
{
"name": "caviar",
"version": "6.0.1",
"description": "A pluggable and extendable web framework which integrates React, Next and Koa to create your own web application out of the box with even zero configuration",
"main": "src/index.js",
"scripts": {
"test:no-cov": "ava --timeout=30s --verbose",
"test:only": "nyc ava --timeout=30s --verbose",
"test": "npm run test:only",
"test:dev": "npm run test:only && npm run report:dev && rm -rf node_modules/.cache",
"lint": "eslint .",
"posttest": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"report:dev": "nyc report --reporter=html && npm run report:open",
"report:open": "open coverage/index.html"
},
"files": [
"src/",
"spawner/"
],
"repository": {
"type": "git",
"url": "git://github.com/kaelzhang/caviar.git"
},
"keywords": [
"caviar",
"skeleton",
"frameworks",
"web framework",
"micro-frontends",
"frontends",
"config chain",
"config layer",
"blocks",
"BFF",
"backend-for-frontend"
],
"engines": {
"node": ">= 8"
},
"ava": {
"babel": false,
"files": [
"test/*.test.js"
]
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/caviar/issues"
},
"devDependencies": {
"ava": "^2.4.0",
"codecov": "^3.5.0",
"delay": "^4.3.0",
"eslint": "^6.4.0",
"eslint-config-ostai": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"fs-extra": "^8.1.0",
"is-type-of": "^1.2.1",
"nyc": "^14.1.1"
},
"dependencies": {
"core-util-is": "^1.0.2",
"env-to-code": "^1.0.4",
"err-object": "^5.1.4",
"has-own-prop": "^2.0.0",
"is-absolute": "^1.0.0",
"object-access": "^2.0.4",
"require-esmodule": "^1.0.1",
"resolve-from": "^5.0.0",
"tapable": "^1.1.3",
"tapable-proxy": "^1.0.4"
}
}