This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "@poddify/aws-common",
"version": "0.0.10",
"description": "Utilities for interacting with AWS resources",
"main": "index.js",
"directories": {
"test": "test"
},
"files": [
"/lib",
"/src"
],
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"coverage": "cross-env NODE_ENV=coverage nyc --check-coverage --reporter=text npm test",
"fixlint": "eslint .js src/ test/ --fix",
"lint": "eslint .js src/ test/",
"test": "mocha",
"verify": "npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Poddify/aws-common.git"
},
"keywords": [
"aws"
],
"author": "Poddify <jordan@poddify.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Poddify/aws-common/issues"
},
"homepage": "https://github.com/Poddify/aws-common#readme",
"dependencies": {
"aws-sdk": "2.339.0"
},
"devDependencies": {
"@poddify/eslint-config-poddify": "1.1.0",
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"chance": "^1.0.16",
"cross-env": "^5.2.0",
"eslint": "^3.19.0",
"jsdom": "^11.6.2",
"mocha": "^5.2.0",
"nyc": "14.1.1",
"proxyquire": "^1.8.0",
"sinon": "^2.3.2"
}
}