]>
Commit | Line | Data |
---|---|---|
2d5b700e BB |
1 | { |
2 | "name": "forum", | |
3 | "description": "A Forum for the year 3000", | |
4 | "license": "Apache-2.0", | |
5 | "author": "Rubén Beltrán del Río <ruben@unlimited.pizza>", | |
6 | "homepage": "https://forum.unlimited.pizza", | |
7 | "repository": { | |
8 | "type": "git", | |
9 | "url": "git+ssh://git@gitlab.com/rbdr/forum.git" | |
10 | }, | |
11 | "bugs": { | |
12 | "url": "https://gitlab.com/rbdr/forum/issues" | |
13 | }, | |
14 | "version": "1.0.0", | |
15 | "type": "module", | |
16 | "main": "lib/forum", | |
17 | "scripts": { | |
18 | "build": "parcel build --no-source-maps ./app/index.html", | |
32ec81f6 | 19 | "document": "jsdoc2md > doc/README.md", |
00a6e8aa | 20 | "lint": "eslint --ext .svelte --ext .js .", |
2d5b700e BB |
21 | "linthtml": "htmlhint", |
22 | "setup-hooks": "ln -s ../../scripts/git-hooks/pre-commit .git/hooks/pre-commit", | |
23 | "test": "lab -r lab-markdown-reporter -o doc/COVERAGE.md -r console -o stdout -c --coverage-path lib -L -t 100 test", | |
24 | "watch": "parcel ./app/index.html" | |
25 | }, | |
26 | "dependencies": { | |
27 | "@hapi/joi": "16.1.8", | |
28 | "getenv2": "^2.0.0", | |
29 | "koa": "^2.11.0", | |
30 | "koa-send": "^5.0.0", | |
31 | "koa-static": "^5.0.0", | |
24be7b53 | 32 | "lightrouter": "^0.3.3", |
66dc4cae BB |
33 | "rethinkdb": "^2.4.2", |
34 | "uuid": "^3.3.3" | |
2d5b700e BB |
35 | }, |
36 | "devDependencies": { | |
66dc4cae | 37 | "@hapi/code": "^7.0.0", |
2d5b700e BB |
38 | "@hapi/eslint-config-hapi": "^12.3.0", |
39 | "@hapi/eslint-plugin-hapi": "^4.3.4", | |
40 | "@hapi/lab": "^21.0.0", | |
41 | "eslint": "^6.7.2", | |
00a6e8aa | 42 | "eslint-plugin-svelte3": "^2.7.3", |
2d5b700e | 43 | "htmlhint": "^0.11.0", |
32ec81f6 | 44 | "jsdoc-to-markdown": "^5.0.3", |
2d5b700e BB |
45 | "lab-markdown-reporter": "^1.0.2", |
46 | "parcel-bundler": "^1.12.4", | |
66dc4cae | 47 | "parcel-plugin-static-files-copy": "^2.2.1", |
2d5b700e BB |
48 | "parcel-plugin-svelte": "^4.0.5", |
49 | "svelte": "^3.16.5" | |
50 | }, | |
51 | "keywords": [ | |
52 | "forum" | |
53 | ], | |
54 | "browserslist": [ | |
55 | "last 1 firefox version" | |
32ec81f6 BB |
56 | ], |
57 | "jsdoc2md": { | |
58 | "files": [ | |
59 | "lib/**/*.js", | |
60 | "config/**/*.js" | |
61 | ] | |
62 | } | |
2d5b700e | 63 | } |