-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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
{
"name": "sae",
"version": "0.0.1",
"description": "This is a component demo for Serverless Devs Tool ",
"keywords": [
"Serverless",
"Framework",
"Serverless-Devs",
"Serverless-Tool",
"Function Compute"
],
"homepage": "https://www.serverless-devs.com",
"author": "Serverless-Devs",
"contributors": [],
"license": "MIT",
"autoInstall": false,
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ServerlessTool/express-alibaba"
},
"scripts": {
"start": "npm run watch",
"watch": "tsc -w",
"prebuild": "npm i rimraf --no-save && rimraf package-lock.json && rimraf dist && rimraf node_modules && npm i",
"build": "npm run esbuild",
"esbuild": "esbuild src/index.ts --bundle --log-level=error --minify --platform=node --format=cjs --target=node10.4 --external:@serverless-devs/core --outfile=dist/index.js"
},
"dependencies": {
"ali-oss": "^6.15.2",
"node-fetch": "^2.6.9",
"string-random": "^0.1.3",
"tty-table": "^4.1.6"
},
"devDependencies": {
"@serverless-devs/core": "latest",
"@types/lodash": "^4.14.169",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.10.0",
"@typescript-eslint/parser": "^3.10.0",
"esbuild": "^0.14.54",
"eslint": "^7.7.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}