-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.09 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
{
"name": "@beforeyoubid/serverless-env-checker",
"version": "1.0.2",
"description": "Checks env. variable size of packaged Serverless env. variables. Designed for CI/CD",
"main": "dist/checker.js",
"types": "dist/checker.d.ts",
"scripts": {
"lint": "eslint '**/*.{ts,tsx,js,jsx}' --quiet",
"test": "jest",
"test:ci": "jest --coverage",
"ts": "tsc",
"build": "rimraf dist && npm run build:types && npm run build:js && cp -r bin dist/bin",
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig.build.json",
"build:js": "swc src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline --ignore=.spec.js",
"build-and-publish": "npm run build && npm publish --access public",
"build-and-publish-dryrun": "npm run build && npm publish --dry-run",
"build-and-publish-dryrun-ci": "npm run build && npm publish --registry http://localhost:4873"
},
"bin": {
"serverless-env-checker": "dist/bin/checker.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/beforeyoubid/npm-serverless-env-checker.git"
},
"keywords": [
"serverless",
"cli",
"environment",
"variables",
"lambda"
],
"author": "Mitchell Browne - Before You Bid",
"license": "ISC",
"bugs": {
"url": "https://github.com/beforeyoubid/npm-serverless-env-checker/issues"
},
"homepage": "https://github.com/beforeyoubid/npm-serverless-env-checker#readme",
"dependencies": {
"arg": "5.0.2",
"esm": "^3.2.25"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.224",
"@swc/jest": "^0.2.22",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"danger": "^11.1.1",
"danger-plugin-yarn": "^1.5.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}