This repository was archived by the owner on Aug 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.71 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.71 KB
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": "@hal-wang/cloudbase-access",
"version": "2.0.3",
"description": "利用 NodeJS 和 CloudBase 快速创建 Serverless RESTful Api",
"homepage": "https://github.com/hal-wang/cloudbase-access",
"repository": {
"type": "git",
"url": "https://github.com/hal-wang/cloudbase-access"
},
"keywords": [
"cloudbase",
"restful",
"nodejs-server",
"serverless",
"nodejs",
"typescript",
"javascript"
],
"bugs": {
"url": "https://github.com/hal-wang/cloudbase-access/issues",
"email": "support@hal.wang"
},
"main": "dist/index.js",
"scripts": {
"build": "sh build.sh",
"deploy": "sh build.sh && npm publish --access=public",
"deploy:beta": "sh build.sh && npm publish --tag=beta --access=public",
"test": "npm run build && jest",
"lint": "eslint src test --ext .ts"
},
"jest": {
"testEnvironment": "node"
},
"author": "hal-wang",
"license": "MIT",
"dependencies": {
"linq": "^3.2.3",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@types/node": "^15.6.0",
"@types/jest": "^26.0.23",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"bin": {
"cba-doc": "bin/cba-doc.js",
"cba-build": "bin/cba.js"
},
"files": [
"dist",
"bin",
"tsbin",
"demo",
"src",
"test",
".eslintrc.js",
".gitignore",
"build.sh",
"jest.config.js",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json"
]
}