-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.4 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
{
"name": "sockbot-shadowmod",
"version": "0.1.0",
"description": "A shadowmod plugin for https://github.com/SockDrawer/SockBot",
"repository": "https://github.com/SockDrawer/SockBot-ShadowMod",
"license": "MIT",
"author": "Accalia Elementia <[email protected]> (https://github.com/AccaliaDeElementia)",
"contributors": [],
"bugs": {
"url": "https://github.com/SockDrawer/SockBot-ShadowMod/issues",
"email": "[email protected]"
},
"main": "./lib/shadowmod.js",
"engines": {
"node": ">=0.12",
"iojs": ">=3"
},
"dependencies": {
},
"devDependencies": {
"chai": "^3.2.0",
"coveralls": "^2.11.4",
"gulp": "^3.9.0",
"gulp-eslint": "^1.0.0",
"gulp-istanbul": "^0.10.0",
"gulp-mocha": "^2.1.3",
"istanbul-harmony": "^0.3.16",
"sinon": "^1.15.1"
},
"scripts": {
"lint": "node --harmony --harmony_arrow_functions node_modules/gulp/bin/gulp.js lint",
"test": "node --harmony --harmony_arrow_functions node_modules/gulp/bin/gulp.js test",
"gulp": "node --harmony --harmony_arrow_functions node_modules/gulp/bin/gulp.js",
"istanbul": "node --harmony --harmony_arrow_functions node_modules/istanbul-harmony/lib/cli.js cover node_modules/gulp-mocha/node_modules/mocha/bin/_mocha -- --recursive -R dot",
"mocha": "node --harmony --harmony_arrow_functions node_modules/gulp-mocha/node_modules/mocha/bin/_mocha --recursive -R spec"
}
}