1 | {
|
2 | "name": "litejs",
|
3 | "version": "21.3.1",
|
4 | "description": "Full-stack web framework in a tiny package",
|
5 | "license": "MIT",
|
6 | "author": "Lauri Rooden <lauri@rooden.ee>",
|
7 | "keywords": [
|
8 | "litejs",
|
9 | "framework",
|
10 | "http",
|
11 | "server",
|
12 | "content negotiation",
|
13 | "accept",
|
14 | "multipart",
|
15 | "uploads",
|
16 | "form-data"
|
17 | ],
|
18 | "homepage": "https://litejs.com",
|
19 | "repository": "github:litejs/litejs",
|
20 | "bugs": "https://github.com/litejs/litejs/issues",
|
21 | "main": "index.js",
|
22 | "files": [
|
23 | "/*.js"
|
24 | ],
|
25 | "litejs": {
|
26 | "lint": "jshint *.js"
|
27 | },
|
28 | "jshintConfig": {
|
29 | "asi": true,
|
30 | "boss": true,
|
31 | "evil": true,
|
32 | "laxcomma": true,
|
33 | "maxdepth": 6,
|
34 | "quotmark": "double"
|
35 | },
|
36 | "nyc": {
|
37 | "exclude": [
|
38 | "coverage/**",
|
39 | "test/**"
|
40 | ],
|
41 | "reporter": [
|
42 | "lcov",
|
43 | "text",
|
44 | "html"
|
45 | ]
|
46 | }
|
47 | }
|