-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.46 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.46 KB
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
{
"name": "sockbot-math",
"version": "2.1.0",
"description": "Math plugin for SockDrawer's SockBot",
"repository": "https://github.com/RaceProUK/SockBot-Math",
"license": "MIT",
"author": "RaceProUK <raceprouk@sockdrawer.io> (https://github.com/RaceProUK)",
"bugs": {
"url": "https://github.com/RaceProUK/SockBot-Math/issues",
"email": "raceprouk@sockdrawer.io"
},
"main": "./Math.js",
"engines": {
"node": ">=0.11",
"iojs": ">=1.7"
},
"dependencies": {
"mathjs": "^3.1.3",
"sockbot": "^2.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-git": "^1.7.0",
"gulp-istanbul": "^0.10.3",
"gulp-jsdoc-to-markdown": "^1.2.1",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"istanbul": "^0.4.2",
"sinon": "^1.17.3"
},
"scripts": {
"start": "sockbot",
"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/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"
}
}