-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 870 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 870 Bytes
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
{
"name": "@serverless-devs/utils",
"version": "0.0.18",
"description": "utils for serverless-devs",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib node_modules",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build",
"pub": "pnpm publish --no-git-checks"
},
"author": "xsahxl",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Serverless-Devs/toolkit"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"js-yaml": "^4.1.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"minimist": "^1.2.8",
"random-string": "^0.2.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.197",
"@types/minimist": "^1.2.2",
"@types/random-string": "^0.0.28"
}
}