-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1019 Bytes
/
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
{
"name": "fancy-404",
"version": "1.0.3",
"description": "A fancy 404 and health check container built with ❤️ by Wenit Labs!",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:watch": "nodemon --ext js --exec npm start",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "NODE_ENV=test mocha test -u tdd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WenitLabs/fancy-404.git"
},
"keywords": [
"Wenit"
],
"author": "Fernando de Morais ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/WenitLabs/fancy-404/issues"
},
"homepage": "https://github.com/WenitLabs/fancy-404#readme",
"devDependencies": {
"expect.js": "~0.3.1",
"mocha": "~3.4.2",
"nodemon": "~1.11.0",
"standard": "~10.0.2",
"superagent": "~3.5.2"
},
"dependencies": {
"dotenv": "~4.0.0",
"koa": "~2.2.0",
"koa-static": "~3.0.0"
},
"engines": {
"node": ">=8.1.0"
}
}