forked from NicolasSiver/nodebb-plugin-ns-embed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "nodebb-plugin-embed",
"version": "3.0.18",
"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": {
"test": "mocha --compilers js:babel-register --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheWorms/nodebb-plugin-embed.git"
},
"keywords": [
"embed",
"youtube",
"vimeo",
"video",
"audio",
"ria"
],
"author": "Nicolas Siver",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheWorms/nodebb-plugin-embed/issues"
},
"contributors": [
{
"name": "The Worm's",
"email": "[email protected]",
"url": "https://github.com/TheWorms"
}
],
"homepage": "https://github.com/TheWorms/nodebb-plugin-embed#readme",
"dependencies": {
"async": "^3.1.0",
"object-assign": "^4.1.1",
"winston": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"browser-sync": "^2.26.7",
"chai": "^4.2.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.1",
"mocha": "^6.2.2"
},
"nbbpm": {
"compatibility": "^1.15.0"
}
}