This repository was archived by the owner on May 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.48 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.48 KB
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
{
"name": "@salte-io/salte-lambda",
"version": "0.0.0-semantically-released.0",
"main": "src/salte-lambda.js",
"engines": {
"node": ">=6.0"
},
"description": "",
"homepage": "https://github.com/salte-io/salte-lambda",
"bugs": "https://github.com/salte-io/salte-lambda/issues",
"contributors": [
"Ceci <admin@cecilias.me>",
"Dave Woodward <dave@salte.io>"
],
"keywords": [
"salte-lambda",
"aws",
"lambda",
"promise"
],
"repository": {
"type": "git",
"url": "https://github.com/salte-io/salte-lambda.git"
},
"scripts": {
"lint": "eslint src/**/*.js tests/**/*.js",
"test": "nyc ava",
"test:tdd": "ava -w",
"report-coverage": "coveralls < coverage/lcov.info",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"license": "MIT",
"dependencies": {
"statuses": "^2.0.0"
},
"devDependencies": {
"ava": "^3.1.0",
"coveralls": "^3.0.6",
"eslint": "^7.1.0",
"eslint-plugin-ava": "^12.0.0",
"esm": "^3.2.25",
"husky": "^7.0.0",
"nyc": "^15.0.0",
"remove-lockfiles": "^2.0.0",
"semantic-release": "^17.0.0"
},
"ava": {
"files": [
"tests/**/*.spec.js"
],
"require": [
"esm"
]
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"text"
],
"all": true
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "remove-lockfiles"
}
}
}