-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.83 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
{
"name": "@pureskillgg/glhf",
"version": "2.5.0",
"description": "Code Lambda for fun and profit.",
"type": "module",
"main": "index.js",
"exports": {
"import": "./index.js"
},
"module": "index.js",
"sideEffects": false,
"keywords": [
"node"
],
"homepage": "https://github.com/pureskillgg/glhf",
"bugs": "https://github.com/pureskillgg/glhf/issues",
"repository": "pureskillgg/glhf",
"license": "MIT",
"author": {
"name": "PureSkill.gg",
"email": "[email protected]"
},
"files": [
"yarn.lock",
"index.js",
"lib",
"handlers",
"data",
"docs"
],
"scripts": {
"test": "nyc ava",
"pretest": "node index.js",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:debug": "ava debug --break",
"lint": "npm-run-all --parallel lint:*",
"lint:prettier": "prettier --check --ignore-path .gitignore '**/*.(js|cjs|mjs|json|yml|yaml|graphql)'",
"lint:js": "eslint --ignore-path .gitignore --ext .js,.cjs,.mjs .",
"lint:docs": "documentation lint 'lib/**/*.doc.js'",
"preversion": "npm-run-all --parallel lint test sls:package",
"postversion": "git push --follow-tags",
"sls:package": "serverless package",
"sls:invoke": "serverless invoke local -f",
"deploy": "npm-run-all --serial deploy:stack",
"deploy:stack": "serverless deploy --aws-s3-accelerate --stage=$SERVERLESS_STAGE",
"example": "node examples",
"example:inspect": "node --inspect examples",
"format": "npm-run-all --parallel format:*",
"preformat": "prettier --write --ignore-path .gitignore '**/*.(js|cjs|mjs|json|yml|yaml|graphql)'",
"format:js": "eslint --ignore-path .gitignore --fix --ext .js,.cjs,.mjs .",
"docs": "documentation serve --watch --github 'lib/**/*.doc.js'",
"docs:build": "documentation build --format html --github --output .docs 'lib/**/*.doc.js'",
"report": "nyc report"
},
"engines": {
"node": ">=16.14.0"
},
"dependencies": {
"@hapi/boom": "^9.1.3",
"@meltwater/mlabs-logger": "^9.1.1",
"@meltwater/phi": "^5.0.0",
"@pureskillgg/ace": "^1.6.0",
"awilix": "^6.1.0",
"cache-manager": "^3.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.13.14",
"@meltwater/examplr": "^7.0.0",
"@pureskillgg/awsjs": "^1.5.0",
"@sentry/serverless": "^6.3.6",
"ava": "^4.0.1",
"documentation": "^13.2.5",
"eslint": "^7.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.2",
"nyc": "^15.0.0",
"prettier": "^2.3.0",
"serverless": "^2.66.2",
"serverless-jetpack": "^0.11.1",
"testdouble": "^3.16.1"
}
}