-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "wirebot",
"version": "1.0.0",
"engines": {
"node": ">=9.8.0"
},
"main": "wirebot.js",
"scripts": {
"tunnel": "ssh -o ServerAliveInterval=10 -p 443 -R $(git config user.name):80:localhost:3000 serveo.net",
"start": "node wirebot.js",
"start:dev": "concurrently \"npm run tunnel\" \"nodemon wirebot.js\"",
"lint": "standard --fix",
"test": "export NODE_ENV=test && standard && nyc _mocha --recursive test/index.spec.js",
"test:watch": "export NODE_ENV=test && standard && nyc _mocha --recursive test/index.spec.js --watch"
},
"repository": "https://github.com/andela-ik/wirebot",
"author": "wire-devs",
"license": "MIT",
"dependencies": {
"@slack/client": "^4.3.1",
"@slack/interactive-messages": "^0.4.0",
"axios": "^0.17.1",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"helmet": "^3.12.1",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"winston": "^3.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"glob": "^7.1.2",
"mocha": "^5.2.0",
"nodemon": "^1.12.1",
"nyc": "^12.0.2",
"sinon": "^6.0.1",
"standard": "^11.0.1",
"supertest": "^3.3.0"
},
"nyc": {
"all": true,
"check-coverage": false,
"eager": true,
"cache": true,
"reporter": [
"lcov",
"text"
],
"clean": true,
"temp-directory": "./coverage/.tmp"
},
"nodemonConfig": {
"ignore": [
"test/*",
"coverage/*",
"dist/*"
]
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
}
}