UNPKG

1.68 kBJSONView Raw
1{
2 "name": "seve",
3 "version": "0.7.1",
4 "description": "Run a tiny & simple server (like, for tests & stuffs) from a given folder (or the current).",
5 "keywords": [
6 "commandline",
7 "cli",
8 "server",
9 "web",
10 "connect",
11 "preview"
12 ],
13 "homepage": "https://github.com/leny/seve",
14 "author": {
15 "name": "leny",
16 "email": "info@flatland.be",
17 "url": "http://leny.me"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git://github.com/leny/seve.git"
22 },
23 "bugs": {
24 "url": "https://github.com/leny/seve/issues"
25 },
26 "licenses": [
27 {
28 "type": "MIT",
29 "url": "https://github.com/leny/seve/blob/master/LICENSE-MIT"
30 }
31 ],
32 "scripts": {
33 "work": "npx babel src --watch --verbose --out-dir lib",
34 "build": "npx babel src --out-dir lib",
35 "lint": "npx eslint --fix --cache src"
36 },
37 "lint-staged": {
38 "*.js": [
39 "npx eslint --fix --cache src",
40 "git add"
41 ]
42 },
43 "husky": {
44 "hooks": {
45 "pre-commit": "npx lint-staged"
46 }
47 },
48 "bin": {
49 "seve": "lib/seve.js"
50 },
51 "preferGlobal": true,
52 "devDependencies": {
53 "@babel/cli": "^7.1.2",
54 "@babel/core": "^7.1.2",
55 "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
56 "@babel/preset-env": "^7.1.0",
57 "babel-eslint": "^10.0.1",
58 "eslint": "^5.7.0",
59 "eslint-plugin-prettier": "^3.0.0",
60 "husky": "^1.1.2",
61 "lint-staged": "^8.0.3",
62 "prettier": "^1.14.3"
63 },
64 "dependencies": {
65 "chalk": "^2.4.1",
66 "commander": "^2.9.0",
67 "express": "^4.13.3",
68 "express-handlebars": "^3.0.0",
69 "human-size": "^1.1.0",
70 "mimetype": "0.0.8",
71 "moment": "^2.13.0",
72 "openurl": "^1.1.1"
73 }
74}