-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "@optoolco/fake-aws",
"version": "0.2.0",
"description": "Fake AWS servers for used in integration test suites",
"main": "index.js",
"scripts": {
"tsc": "npr tsc -p jsconfig.json --maxNodeModuleJsDepth 0",
"lint": "npr tsdocstandard",
"test": "npm run tsc && npm run lint && node test/index.js && npm run type-coverage",
"type-coverage": "npr type-coverage -p jsconfig.json --ignore-catch --strict --at-least 100"
},
"author": "Raynos <raynos2@gmail.com>",
"repository": "git://github.com/optoolco/fake-aws.git",
"homepage": "https://github.com/optoolco/fake-aws",
"bugs": {
"url": "https://github.com/optoolco/fake-aws/issues",
"email": "raynos2@gmail.com"
},
"contributors": [
{
"name": "Raynos"
},
{
"name": "heapwolf"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/optoolco/fake-aws/raw/master/LICENSE"
}
],
"tsdocstandard": {
"ignore": [
"s3/scripts/cache-from-prod.js",
"lambda/scripts/cache-from-prod.js",
"cloudwatchlogs/scripts/cache-from-prod.js"
]
},
"binDependencies": {
"tsdocstandard": "16.1.0",
"type-coverage": "2.13.3",
"typescript": "4.0.3"
},
"devDependencies": {
"@types/node": "14.11.5",
"@pre-bundled/rimraf": "3.0.0-patch-1",
"@pre-bundled/tape": "4.11.0",
"aws-sdk": "2.507.0",
"npm-bin-deps": "1.10.1",
"tape-harness": "5.0.0",
"uuid": "8.3.1"
},
"dependencies": {}
}