-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
40 lines (40 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "nodebb-plugin-ns-embed",
"version": "6.0.0",
"description": "Embed media and rich content in posts: youtube, vimeo, twitch etc. All embeds are based on the rules. You are encouraged to build your own rules to embed everything what is embeddable.",
"main": "./plugin/index.js",
"scripts": {
"compile-acp-styles": "sass --no-source-map ./style/main.scss ./public/css/acp.css",
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NicolasSiver/nodebb-plugin-ns-embed.git"
},
"keywords": [
"embed",
"youtube",
"vimeo",
"video",
"audio",
"ria"
],
"author": "Nicolas Siver",
"license": "MIT",
"bugs": {
"url": "https://github.com/NicolasSiver/nodebb-plugin-ns-embed/issues"
},
"homepage": "https://github.com/NicolasSiver/nodebb-plugin-ns-embed#readme",
"dependencies": {
"async": "^3.1.0",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.4.0",
"sass": "^1.34.0"
},
"nbbpm": {
"compatibility": "~2.2.x"
}
}