-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·53 lines (53 loc) · 1.42 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
{
"name": "aido",
"version": "0.3.5",
"description": "Slack Applications Made Simple",
"main": "lib/index.js",
"scripts": {
"todo": "nodemon --inspect=0.0.0.0:9300 --signal SIGINT --ext js,json,pug examples/todo dev",
"polls": "nodemon --inspect=0.0.0.0:9300 --signal SIGINT --ext js,json,pug examples/polls dev",
"number": "nodemon --inspect=0.0.0.0:9300 --signal SIGINT --ext js,json,pug examples/number dev",
"lint": "eslint --ignore-path .gitignore ./",
"test": "jest --runInBand --coverage"
},
"author": "Damien BUTY <dam.buty@gmail.com> (https://www.npmjs.com/~dam-buty)",
"license": "ISC",
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"jest": "^25.3.0",
"nodemon": "^2.0.3",
"sinon": "^9.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aidojs/aido.git"
},
"bugs": {
"url": "https://github.com/aidojs/aido/issues"
},
"dependencies": {
"bluebird": "^3.5.5",
"html2slack": "^1.8.0",
"is-json": "^2.0.1",
"knex": "^0.20.13",
"koa": "^2.7.0",
"koa-body": "^4.1.0",
"koa-router": "^8.0.8",
"lodash": "^4.17.11",
"objection": "^2.1.3",
"pug": "^2.0.3",
"pug-lexer": "^4.1.0",
"request-promise-native": "^1.0.7",
"slack": "^11.0.2",
"winston": "^3.2.1"
},
"peerDependencies": {
"sqlite3": "^4.2.0"
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.js"
]
}
}