-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 1.93 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "cloudhound",
"version": "0.0.6",
"description": "Find objects in the cloud",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"nodeVersion": ">= 12.0.0",
"scripts": {
"jsdoc": "jsdoc -c ./docconfig/jsdoc.json",
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm -fr lib/*",
"prepublish": "npm run build",
"prepublishOnly": "tsc -p ./ --outDir dist",
"test": "mocha -r ts-node/register test/*.ts",
"posttest": "npm run lint",
"lint": "tslint --project tsconfig.json --format stylish",
"coverage": "nyc mocha && nyc report --reporter=html && nyc report --reporter=json-summary"
},
"repository": {
"type": "git",
"url": "https://github.com/nspragg/cloudhound.git"
},
"keywords": [
"aws",
"s3",
"file",
"cloud",
"recursive",
"search",
"cloudhound",
"file",
"hound",
"lister",
"find",
"walk",
"walker",
"finder",
"file system"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nspragg/cloudhound/issues"
},
"homepage": "https://github.com/nspragg/cloudhound",
"devDependencies": {
"coveralls": "^3.0.0",
"@types/chai": "^4.2.12",
"@types/lodash": "^4.14.161",
"@types/mocha": "^2.2.43",
"@types/node": "^10.12.18",
"@types/sinon": "^4.0.0",
"eslint": "^4.19.1",
"eslint-config-iplayer-base": "^1.0.0",
"chai": "^4.1.2",
"jsdoc": "^3.4.3",
"nyc": "^11.2.1",
"sinon": "^2.3.6",
"ts-node": "^7.0.1",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^4.0.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"lodash": "^4.17.20"
},
"peerDependencies": {
"aws-sdk": "^2.823.0"
}
}