UNPKG

1.4 kBJSONView Raw
1{
2 "name": "nodebb-plugin-emoji",
3 "version": "3.4.2",
4 "description": "Adds extensible emoji functionality to NodeBB",
5 "main": "build/lib",
6 "author": "Peter Jaszkowiak <p.jaszkow@gmail.com> (https://github.com/pitaj)",
7 "license": "MIT",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/NodeBB/nodebb-plugin-emoji.git"
11 },
12 "nbbpm": {
13 "compatibility": "^1.13.0"
14 },
15 "keywords": [
16 "nodebb",
17 "plugin",
18 "emoji",
19 "extended"
20 ],
21 "dependencies": {
22 "fs-extra": "^9.0.1",
23 "lodash": "^4.17.20",
24 "multer": "^1.4.2",
25 "preact": "^10.5.7",
26 "string-hash": "^1.1.3"
27 },
28 "devDependencies": {
29 "@types/bootstrap": "^3.4.0",
30 "@types/express": "^4.17.9",
31 "@types/fs-extra": "^9.0.6",
32 "@types/lodash": "^4.14.166",
33 "@types/multer": "^1.4.5",
34 "@types/nconf": "^0.10.0",
35 "@types/node": "^14.14.16",
36 "@types/socket.io": "^2.1.12",
37 "@typescript-eslint/eslint-plugin": "^4.11.0",
38 "@typescript-eslint/parser": "^4.11.0",
39 "eslint": "^7.16.0",
40 "eslint-config-airbnb-base": "^14.2.1",
41 "eslint-plugin-import": "^2.22.1",
42 "typescript": "^4.1.3"
43 },
44 "scripts": {
45 "lint": "eslint lib/* public/**/*.ts public/**/*.js public/**/*.tsx",
46 "compile": "tsc -p . && tsc -p public",
47 "prepare": "rm -r build; npm run compile && mkdir -p build/emoji && touch build/emoji/avoid_npm_ignore"
48 }
49}