-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 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": "s3-website",
"version": "3.3.1",
"description": "Easily publish static websites on Amazon S3",
"main": "index.js",
"scripts": {
"test": "node test/index.js | faucet",
"lint": "snazzy",
"prepublish": "npm prune && npm ls && npm test"
},
"bin": {
"s3-website": "./s3-website.js"
},
"repository": {
"type": "git",
"url": "https://github.com/klaemo/s3-website"
},
"keywords": [
"s3",
"aws",
"amazon",
"static",
"website"
],
"author": "Clemens Stolle <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/klaemo/s3-website/issues"
},
"homepage": "https://github.com/klaemo/s3-website",
"dependencies": {
"aws-sdk": "^2.6.12",
"cloudfront-tls": "^1.0.0",
"colors": "1.4.0",
"commander": "^2.9.0",
"console.table": "^0.7.0",
"deep-diff": "^0.3.4",
"dotenv": "^2.0.0",
"glob": "^7.1.1",
"graceful-fs": "^4.1.11",
"lodash": "^4.17.4",
"log-update": "^1.0.2",
"merge-defaults": "^0.2.1",
"mime": "^1.3.4",
"object-assign": "^4.1.0",
"s3-diff": "^1.1.0",
"wildcard": "^1.1.2"
},
"devDependencies": {
"faucet": "0.0.1",
"snazzy": "5.0.0",
"supertest": "^2.0.1",
"tape": "^4.6.2"
}
}