-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.5 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
{
"name": "spark-botkit-servicenow",
"version": "0.0.1",
"description": "A starter bot for cisco spark and service now integration",
"author": "Cisco",
"contributors": [
{
"name": "Roger Landreth",
"email": "roger.landreth@asynchrony.com"
},
{
"name": "Kara Kimmel",
"email": "kara.kimmel@asynchrony.com"
},
{
"name": "Chad Schwab",
"email": "chad.schwab@asynchrony.com"
},
{
"name": "Alex Agatstein",
"email": "alex.agatstein@asynchrony.com"
},
{
"name": "Joe Still",
"email": "joe.still@asynchrony.com"
}
],
"main": "src/bot.js",
"scripts": {
"start": "node src/bot.js",
"test": "mocha test --recursive",
"test:watch": "npm run test -- --watch",
"test:docker": "docker exec -it servicenow-spark-bot npm run test",
"test:jenkins": "JUNIT_REPORT_PATH=test/jenkins-report.xml mocha test --recursive --colors --reporter mocha-jenkins-reporter"
},
"dependencies": {
"body-parser": "^1.15.2",
"botkit": "^0.5",
"crypto-js": "^3.1.9-1",
"dashbot": "0.7.4",
"debug": "^2.6.0",
"express": "^4.14.0",
"node-env-file": "^0.1.8",
"querystring": "^0.2.0",
"request": "^2.81.0",
"wordfilter": "^0.2.6"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"mocha-jenkins-reporter": "^0.3.7",
"sinon": "^2.1.0"
},
"license": "ISC"
}