-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "s3-autoindex",
"version": "1.0.5",
"description": "Serve the contents of a S3 bucket (private or public) over HTTP",
"keywords": [
"aws",
"s3",
"bucket",
"server"
],
"main": "./dist/server.js",
"bin": {
"s3-autoindex": "./dist/server.js"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"lint": "tslint --project tsconfig.json",
"test": "node --expose-gc dist/test/test.js",
"pretest": "npm run build",
"prepare": "npm run lint && npm run clean && npm run build && npm test"
},
"license": "AFL-2.0",
"repository": {
"type": "git",
"url": "git://github.com/mabels/s3-autoindex.git"
},
"bugs": {
"url": "https://github.com/mabels/s3-autoindex/issues"
},
"homepage": "https://github.com/mabels/s3-autoindex#readme",
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/htmlparser2": "^3.7.31",
"@types/mock-aws-s3": "^2.6.0",
"@types/memwatch-next": "^0.3.1",
"@types/node": "^8.5.2",
"@types/request-promise-native": "^1.0.10",
"@types/uuid": "^3.4.3",
"@types/yargs": "^10.0.0",
"chai": "^4.1.2",
"domhandler": "^2.4.1",
"memwatch-next": "^0.3.0",
"domutils": "^1.6.2",
"htmlparser2": "^3.9.2",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"dependencies": {
"aws-sdk": "^2.176.0",
"mock-aws-s3": "^2.6.0",
"rxme": "^1.4.2",
"simqle": "^4.0.1",
"uuid": "^3.1.0",
"yargs": "^10.0.3"
}
}