-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.24 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
55
56
57
{
"name": "nodebb-plugin-featured-topics-extended",
"version": "0.11.0",
"description": "Adds a customisable news/blog page and some widgets using featured topics.",
"license": "MIT-0",
"main": "./lib/plugin.js",
"repository": "yariplus/nodebb-plugin-featured-topics-extended",
"homepage": "https://github.com/yariplus/nodebb-plugin-featured-topics-extended",
"bugs": "https://github.com/yariplus/nodebb-plugin-featured-topics-extended/issues",
"author": "yariplus <[email protected]>",
"contributors": [
"ornithes",
"vyprik",
"AGraber",
"expressadapter",
"saesrpg",
"DeusProx",
"gdude2002",
"exomarty",
"evoixmr",
"GitPuffy",
"artch",
"jffz",
"alfazaz",
"AlanJinqs",
"Ashk2a",
"uyiyei",
"charizzrd"
],
"keywords": [
"nodebb",
"plugin",
"news",
"portal",
"featured",
"topics"
],
"nbbpm": {
"compatibility": "^3.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3",
"nyc": "^6.4.4"
},
"scripts": {
"test": "npm run test:run && npm run test:report",
"test:run": "nyc mocha test/test.js",
"test:report": "nyc report --reporter=lcov"
},
"nyc": {
"exclude": [
"nodebb",
"test"
]
}
}