-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "hubot-wizards-duel",
"description": "Hubot script that allows users to engage in one-on-one wizard's duels",
"version": "0.0.2",
"author": "Patrick Wolfert <[email protected]> (https://github.com/pwolfert)",
"license": "MIT",
"keywords": "hubot, hubot-scripts, wizard, duel, dueling, fight, battle",
"repository": {
"type": "git",
"url": "git://github.com/pwolfert/hubot-wizards-duel.git"
},
"bugs": {
"url": "https://github.com/pwolfert/hubot-wizards-duel/issues"
},
"main": "index.coffee",
"scripts": {
"build": "babel src --out-dir build",
"watch": "yarn build --watch",
"build-tools": "babel tools/src/tools.js -o tools/build/tools.js"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"clamp": "^1.0.1",
"coffee-script": "1.6.3",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-copy": "^1.0.0",
"lodash": "^4.17.2",
"matchdep": "~0.3.0",
"oxford-join": "^0.1.0"
},
"peerDependencies": {
"hubot": "2.x"
},
"devDependencies": {
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"chai": "^2.1.1",
"eslint-config-prettier": "^2.9.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-eslint": "^19.0.0",
"grunt-mocha-test": "~0.12.7",
"grunt-release": "~0.11.0",
"hubot": "2.x",
"hubot-test-helper": "^1.5.0",
"mocha": "^2.1.0",
"prettier": "^1.10.2",
"sinon": "^1.13.0",
"sinon-chai": "^2.7.0"
}
}