-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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": "@sparkpost/lambda-request",
"version": "1.0.0",
"description": "This is a wrapper for `request-promise` that includes information about your lambda function on the `User-Agent` header of each request.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test NODE_CONFIG_PERSIST_ON_CHANGE=N NODE_PATH=$NODE_PATH:. nyc --reporter=text-summary --reporter=lcov --report-dir=test/reports/unit/ mocha test/unit/"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-sparkpost": "^2.0.0",
"husky": "^4.0.9",
"lint-staged": "^9.5.0",
"lodash.random": "^3.2.0",
"mocha": "^9.1.4",
"nyc": "^15.1.0",
"prettier-eslint-cli": "^5.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"prettier-eslint --write",
"eslint --fix",
"git add"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SparkPost/lambda-request.git"
},
"bugs": {
"url": "https://github.com/SparkPost/lambda-request/issues"
},
"homepage": "https://github.com/SparkPost/lambda-request#readme"
}