This repository has been archived by the owner on Jul 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
84 lines (84 loc) · 2.24 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
{
"name": "midway-faas",
"description": "framework and tool chain for Node.js Serverless Service",
"version": "1.0.0",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.119",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"benchmark": "^2.1.4",
"gh-pages": "^1.2.0",
"lerna": "3",
"lerna-relinker": "^1.4.0",
"mwts": "^1.0.5",
"opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.2",
"rimraf": "^3.0.0",
"typedoc": "^0.11.0",
"typescript": "^3.8.3"
},
"scripts": {
"autod": "lerna run autod",
"test": "lerna run test",
"cov": "lerna run cov --concurrency=1",
"ci": "npm run build && npm run cov",
"purge": "npm run clean && rm -rf package-lock.json && rm -rf node_modules",
"reset": "npm run purge && npm i && npm run ci",
"canary": "sh scripts/publish.sh --canary",
"beta": "sh scripts/publish.sh --npm-tag beta --force-publish=*",
"next": "sh scripts/publish.sh --npm-tag next",
"release": "rm -f ./packages/.DS* && sh scripts/publish.sh",
"bootstrap": "rm -f ./packages/.DS* && lerna bootstrap",
"clean": "lerna clean --yes && rm -rf ./packages/**/package-lock.json",
"build": "sh scripts/build.sh",
"prettier": "prettier --write 'packages/**/*.ts'",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS",
"site": "vuepress dev docs",
"lint": "lerna exec mwts check",
"lint:fix": "lerna exec mwts fix"
},
"keywords": [
"serverless",
"faas",
"k8s",
"cloud native"
],
"homepage": "http://github.com/midwayjs/midway-faas",
"repository": {
"type": "git",
"url": "http://github.com/midwayjs/midway-faas.git"
},
"engines": {
"node": ">= 10"
},
"license": "MIT",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/midway-faas"
},
"nyc": {
"include": [
"packages/**/src/*.ts",
"packages/**/src/**/*.ts"
],
"exclude": [
"**/typings",
"**/*.d.ts",
"**/dist",
"**/test",
"**/src/domain.ts",
"**/src/interface.ts"
],
"extension": [
".ts",
".js"
],
"reporter": [
"json",
"html"
],
"all": true
},
"dependencies": {}
}