-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
113 lines (113 loc) · 3.52 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@serverless-devs/core",
"version": "0.1.66",
"description": "Serverless Devs Tool Core Component",
"keywords": [
"Serverless",
"Serverless-Devs",
"Serverless-Core"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Serverless-Devs/Serverless-Devs"
},
"bugs": {
"url": "https://github.com/Serverless-Devs/core/issues"
},
"homepage": "https://www.serverless-devs.com",
"scripts": {
"start": "npm run watch",
"prewatch": "rimraf lib && mkdir lib && cp -r ./src/daemon ./lib",
"watch": "npx tsc -w -p tsconfig.json",
"debug": "ts-node test/fixtures/spinner.ts",
"test": "jest --testTimeout 10000",
"test:watch": "jest --testTimeout 10000 --watchAll",
"prebuild": "rimraf lib && rimraf dist",
"build:s": "npm run prebuild && npx tsc && cp -r ./src/daemon ./lib",
"postbuild:s": "npm run esbuild && cp -r ./src/daemon ./dist",
"esbuild": "esbuild lib/index.js --bundle --log-level=error --minify --platform=node --format=cjs --target=node10.4 --outfile=dist/index.js",
"build:npm": "npm run prebuild && npx tsc && cp -r ./src/daemon ./lib",
"postbuild:npm": "cp -r ./lib ./dist",
"test:cov": "jest --coverage",
"lint": "npm run typecheck && f2elint scan -i src",
"fix": "f2elint fix",
"pub": "npm run build && npm publish",
"typecheck": "npx tsc -p tsconfig.json --noEmit",
"beta": "npm publish --tag=beta",
"preln": "rm -rf ~/.s/cache/core/dist",
"ln": "ln -s $(pwd)/lib ~/.s/cache/core/dist"
},
"autoInstall": false,
"main": "./dist/index.js",
"devDependencies": {
"@alicloud/pop-core": "^1.7.10",
"@serverless-cd/tracker": "^0.0.10",
"@serverless-devs/acc": "^1.1.3",
"@serverless-devs/got": "^8.3.2",
"@serverless-devs/s-progress-bar": "^0.0.8",
"@serverless-devs/utils": "^0.0.8",
"@types/archiver": "^5.1.1",
"@types/command-exists": "^1.2.0",
"@types/command-line-usage": "^5.0.1",
"@types/decompress": "^4.2.4",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.178",
"@types/minimist": "^1.2.2",
"@types/rimraf": "^3.0.0",
"ansi-escapes": "^4.3.2",
"archiver": "^5.3.0",
"art-template": "^4.13.2",
"chalk": "^4.1.0",
"command-exists": "^1.2.9",
"command-line-usage": "^6.1.1",
"crypto-js": "^4.0.0",
"decompress": "^4.2.1",
"dotenv": "^10.0.0",
"esbuild": "^0.14.10",
"execa": "^5.1.1",
"extend2": "^1.0.1",
"fs-extra": "^9.1.0",
"getmac": "^5.20.0",
"husky": "^6.0.0",
"ignore": "^5.1.8",
"inquirer": "^8.2.0",
"ip": "^1.1.5",
"is-docker": "2.2.1",
"jest": "^27.4.6",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"minimatch": "^5.0.0",
"minimist": "^1.2.6",
"ora": "^5.3.0",
"prettyjson": "^1.2.1",
"readline": "^1.3.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"string-argv": "^0.3.1",
"strip-dirs": "^3.0.0",
"table-layout": "^1.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "4.1.3",
"walk-sync": "^3.0.0",
"yaml": "^1.10.2"
},
"husky": {
"hooks": {
"commit-msg": "f2elint exec commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "f2elint exec lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts}": "f2elint exec eslint"
},
"gitHead": "aec19d7a89cb711f0a246ecf77e79d3668fcb8da"
}