-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "pony-express",
"version": "1.0.0",
"description": "A build & deploy server for static websites backed by dropbox and served by S3",
"repository": "https://github.com/griffinmyers/pony-express",
"engines": {
"node": "v20.11.1"
},
"scripts": {
"start": "node app.js",
"lint": "eslint . --ext .js",
"test": "node_modules/.bin/mocha --reporter spec 'test/**/*.js'",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- 'test/**/*.js'; open coverage/lcov-report/index.html"
},
"dependencies": {
"aws-sdk": "2.1.7",
"body-parser": "1.10.2",
"express": "4.18.2",
"glob": "4.3.5",
"jade": "1.9.1",
"lodash": "4.5.1",
"metalsmith": "1.0.1",
"metalsmith-collections": "0.7.0",
"metalsmith-layouts": "1.6.4",
"metalsmith-markdown": "0.2.1",
"metalsmith-sass": "^2.0.0",
"metalsmith-static": "0.0.5",
"metalsmith-uglify": "1.0.1",
"mime": "1.2.11",
"mkdirp": "0.5.0",
"moment": "2.9.0",
"morgan": "1.5.1",
"node-sass": "^8.0.0",
"q": "1.1.2",
"request": "2.51.0",
"rimraf": "2.2.8",
"winston": "2.1.1"
},
"devDependencies": {
"eslint": "^8.36.0",
"istanbul": "0.4.2",
"metalsmith-serve": "0.0.3",
"metalsmith-watch": "0.2.0",
"mocha": "2.4.5",
"mock-fs": "5.2.0",
"should": "5.2.0",
"supertest": "0.15.0",
"wirepig": "^0.1.0"
},
"license": "MIT"
}