-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.61 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
{
"dependencies": {
"aws-sdk": "^2.846.0",
"bluebird": "^3.5.0",
"lodash": "^4.17.20",
"proxy-agent": "^6.3.1",
"uuid": "^3.3.2"
},
"name": "@sparkpost/aws",
"description": "Thin wrappers around the aws-sdk libraries we use.",
"version": "3.4.1",
"main": "index.js",
"devDependencies": {
"auditmated": "^0.1.2",
"chai": "^4.3.6",
"chai-as-promised": "^7.0.0",
"eslint": "^8.49.0",
"eslint-config-sparkpost": "^3.0.0",
"eslint-plugin-mocha": "^10.1.0",
"husky": "^1.1.2",
"lint-staged": "^11.0.0",
"mocha": "^10.2.0",
"nyc": "^14.0.0",
"prettier-eslint-cli": "^7.1.0",
"proxyquire": "^1.8.0",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0"
},
"scripts": {
"make-me-pretty": "prettier-eslint \"**/*.js\" --write",
"lint": "eslint . --fix",
"test-base": "NODE_ENV=test NODE_PATH=$NODE_PATH:. nyc --reporter=lcov --report-dir=test/reports/unit mocha test/unit/",
"test": "NODE_ENV=test NODE_PATH=$NODE_PATH:. nyc --reporter=text-summary --reporter=lcov --report-dir=test/reports/unit/ mocha test/unit/",
"prepublishOnly": "npm test",
"postpublish": "git push --follow-tags origin master"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "auditmated"
}
},
"lint-staged": {
"**/*.js": [
"npm run make-me-pretty",
"npm run lint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SparkPost/aws.git"
},
"author": "",
"bugs": {
"url": "https://github.com/SparkPost/aws/issues"
},
"homepage": "https://github.com/SparkPost/aws#readme"
}