-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 854 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 854 Bytes
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
{
"author": "YOU <YOU@example.com>",
"name": "my_actionhero_project",
"description": "my actionhero project",
"version": "0.1.0",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"actionhero": "18.0.2",
"ah-slack-plugin": "^0.1.2",
"fakeredis": "latest",
"giphy-api-without-credentials": "^1.1.0",
"ioredis": "^3.2.2",
"ws": "^5.2.0"
},
"devDependencies": {
"chai": "latest",
"cross-env": "^5.1.6",
"dirty-chai": "latest",
"mocha": "^5.2.0",
"standard": "^11.0.1"
},
"scripts": {
"start": "actionhero start",
"actionhero": "actionhero",
"pretest": "standard",
"test": "cross-env NODE_ENV=test mocha"
},
"standard": {
"globals": [
"describe",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
}
}