-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "generator-spark-bot",
"version": "1.0.1",
"description": "Scaffold a Cisco spark bot with simplicity and usability in mind",
"homepage": "https://github.com/brh55/generator-spark-bot.git",
"author": {
"name": "Brandon Him",
"email": "[email protected]",
"url": "http://brandonhim.com"
},
"scripts": {
"test": "xo && ava -v"
},
"files": [
"app"
],
"main": "app/index.js",
"keywords": [
"spark",
"cisco",
"bot",
"communication",
"yeoman-generator"
],
"dependencies": {
"chalk": "^1.1.3",
"humanize-url": "^1.0.1",
"normalize-url": "^1.9.0",
"superb": "^1.3.0",
"underscore.string": "^3.3.4",
"yeoman-generator": "^1.0.0",
"yosay": "^1.2.1"
},
"devDependencies": {
"ava": "^0.17.0",
"xo": "^0.17.1",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.6.0"
},
"xo": {
"esnext": true,
"ignores": [
"app/templates/**",
"command/templates/**"
]
},
"repository": "https://github.com/brh55/generator-spark-bot.git",
"license": "MIT"
}