-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "registry",
"version": "0.0.1",
"description": "This is a component demo for Serverless Devs Tool ",
"autoInstall": false,
"homepage": "https://www.serverless-devs.com",
"author": "Serverless-Devs",
"contributors": [],
"license": "MIT",
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"keywords": [
"Serverless",
"Framework",
"Serverless-Devs",
"Serverless-Tool",
"Function Compute"
],
"scripts": {
"publish": "npm install",
"start": "npm run watch",
"watch": "tsc -w",
"prebuild": "rimraf package-lock.json && rimraf dist && rimraf node_modules && npm i",
"build": "esbuild src/index.ts --bundle --log-level=error --minify --platform=node --format=cjs --target=node10.4 --external:@serverless-devs/core --outfile=dist/index.js",
"test": "jest"
},
"dependencies": {
"@serverless-devs/core": "latest",
"fs": "^0.0.1-security",
"git-ignore-parser": "0.0.2",
"lodash": "^4.17.21",
"md5-file": "^5.0.0",
"opn": "^0.1.2",
"js-yaml": "^4.1.0",
"path": "^0.12.7",
"progress": "^2.0.3",
"random-string": "^0.2.0",
"request": "^2.88.2",
"request-promise": "4.2.6",
"table": "^6.8.0",
"tty-table": "^4.1.5"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^14.0.23",
"esbuild": "^0.13.8",
"jest": "^28.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.4.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true
}
}