-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "butler-server",
"version": "0.11.0",
"description": "Serve files from any directory",
"repository": {
"type": "git",
"url": "https://github.com/hph/butler.git"
},
"license": "MIT",
"keywords": [
"http",
"server",
"static",
"assets",
"files"
],
"main": "dist/index.js",
"author": "Haukur Páll Hallvarðsson <hph@hph.is>",
"scripts": {
"build": "tsc && cp ./src/template.ejs ./dist",
"start": "bin/butler",
"test": "npm run build && mocha dist/*.test.js",
"postinstall": "npm run build"
},
"bin": {
"butler": "bin/butler"
},
"dependencies": {
"@types/bluebird": "^3.0.37",
"@types/chai": "^3.4.35",
"@types/chalk": "^0.4.31",
"@types/ejs": "^2.3.33",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"@types/sinon": "^1.16.35",
"@types/yargs": "^6.6.0",
"bluebird": "^3.4.7",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"date-fns": "^1.27.2",
"ejs": "^2.5.6",
"mime-types": "^2.1.14",
"mocha": "^3.2.0",
"sinon": "^1.17.7",
"typescript": "^2.1.6",
"yargs": "^6.6.0"
}
}