-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 2.01 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
58
59
60
61
62
63
64
{
"name": "nodebb-plugin-minecraft-integration",
"version": "0.8.0-alpha.22",
"description": "NodeBB plugin to integrate your forum with your Minecraft Server using widgets, user syncing, group/rank syncing, sso, bukkit/bungeecord/sponge communication, and more.",
"main": "library.js",
"scripts": {
"compile": "BABEL_ENV=server babel src -d . --ignore src/public --source-maps && BABEL_ENV=client babel src/public -d public --source-maps",
"pretest": "npm run compile",
"test": "nyc --require babel-register mocha test",
"coverage": "nyc report --reporter=json && remap-istanbul -i coverage/coverage-final.json -t lcovonly -o coverage/lcov.info && sed -i 's/SF:.*integration/SF:\\/src/g' coverage/lcov.info && rm coverage/coverage-final.json && codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/yariplus/nodebb-plugin-minecraft-integration"
},
"keywords": [
"nodebb",
"plugin",
"widget",
"minecraft"
],
"author": {
"name": "yariplus",
"email": "[email protected]"
},
"license": "(MIT OR CC0-1.0)",
"bugs": {
"url": "https://github.com/yariplus/nodebb-plugin-minecraft-integration/issues"
},
"readme": "",
"readmeFilename": "README.md",
"dependencies": {
"humanize-duration": "^3.7.1",
"moment": "^2.20.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.26.0",
"chai": "^3.5.0",
"codecov": "*",
"mocha": "^2.5.3",
"nyc": "^6.4.4",
"remap-istanbul": "^0.7.0",
"standard": "*"
},
"nbbpm": {
"compatibility": "^1.0.0"
},
"nyc": {},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/public/vendor",
"/lib",
"/library.js"
]
},
"homepage": "https://github.com/yariplus/nodebb-plugin-minecraft-integration"
}