-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "@silvermine/lambda-utils",
"version": "0.1.0",
"description": "Utilities functions for working with AWS Lambda",
"scripts": {
"check-node-version": "check-node-version --npm 8.5.5",
"commitlint": "commitlint --from dc5771e",
"test": "npm run check-node-version && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec 'tests/**/*.test.js'",
"markdownlint": "markdownlint -c .markdownlint.json '{,!(node_modules)/**/}*.md'",
"eslint": "eslint .",
"standards": "npm run commitlint && npm run markdownlint && npm run eslint"
},
"author": "Jeremy Thomerson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/silvermine/lambda-utils.git"
},
"keywords": [
"aws",
"lambda",
"amazon web services"
],
"bugs": {
"url": "https://github.com/silvermine/lambda-utils/issues"
},
"homepage": "https://github.com/silvermine/lambda-utils#readme",
"peerDependencies": {
"q": ">=1.4.1 <2.0.0"
},
"devDependencies": {
"@silvermine/eslint-config": "3.0.1",
"@silvermine/standardization": "2.1.1",
"coveralls": "3.0.2",
"eslint": "6.8.0",
"expect.js": "0.3.1",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"mocha-lcov-reporter": "1.3.0",
"q": "1.4.1",
"rewire": "2.5.2",
"sinon": "1.17.7",
"underscore": "1.8.3"
}
}