]>
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", | |
2d5b700e BB |
15 | "scripts": { |
16 | "build": "parcel build --no-source-maps ./app/index.html", | |
00a6e8aa | 17 | "lint": "eslint --ext .svelte --ext .js .", |
2d5b700e BB |
18 | "linthtml": "htmlhint", |
19 | "setup-hooks": "ln -s ../../scripts/git-hooks/pre-commit .git/hooks/pre-commit", | |
38416066 | 20 | "test": "echo sorry", |
2d5b700e BB |
21 | "watch": "parcel ./app/index.html" |
22 | }, | |
23 | "dependencies": { | |
2dc54482 | 24 | "eventemitter3": "^4.0.4", |
862a5f9c | 25 | "language-name-map": "^0.3.0", |
2dc54482 | 26 | "lightrouter": "^0.3.3" |
2d5b700e BB |
27 | }, |
28 | "devDependencies": { | |
38416066 BB |
29 | "@hapi/eslint-config-hapi": "^13.0.2", |
30 | "@hapi/eslint-plugin-hapi": "^4.3.5", | |
2dc54482 | 31 | "eslint": "^7.3.0", |
00a6e8aa | 32 | "eslint-plugin-svelte3": "^2.7.3", |
2dc54482 | 33 | "htmlhint": "^0.14.0", |
2d5b700e | 34 | "parcel-bundler": "^1.12.4", |
2dc54482 | 35 | "parcel-plugin-static-files-copy": "^2.4.3", |
38416066 | 36 | "parcel-plugin-svelte": "^4.0.6", |
2dc54482 BB |
37 | "svelte": "^3.23.2", |
38 | "svelte-i18n": "^3.0.4" | |
2d5b700e BB |
39 | }, |
40 | "keywords": [ | |
41 | "forum" | |
42 | ], | |
43 | "browserslist": [ | |
44 | "last 1 firefox version" | |
32ec81f6 BB |
45 | ], |
46 | "jsdoc2md": { | |
47 | "files": [ | |
48 | "lib/**/*.js", | |
49 | "config/**/*.js" | |
50 | ] | |
38416066 BB |
51 | }, |
52 | "optionalDependencies": { | |
53 | "bufferutil": "^4.0.1", | |
54 | "utf-8-validate": "^5.0.2" | |
32ec81f6 | 55 | } |
2d5b700e | 56 | } |