-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "@emartech/boar-koa-server",
"description": "",
"main": "index.js",
"files": [
"**/*.js"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"code-style": "eslint '**/*.js'",
"test-run": "mocha ./app ./lib --recursive",
"audit": "npm audit",
"test": "npm run test-run && npm run audit --omit=dev && npm run code-style",
"release": "CI=true semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emartech/boar-koa-server.git"
},
"author": "Emarsys",
"license": "MIT",
"bugs": {
"url": "https://github.com/emartech/boar-koa-server/issues"
},
"homepage": "https://github.com/emartech/boar-koa-server",
"dependencies": {
"app-root-path": "3.1.0",
"deep-extend": "0.6.0",
"@koa/cors": "5.0.0",
"koa-bodyparser": "4.4.1",
"koa-helmet": "7.0.2",
"koa-methodoverride": "2.0.0",
"koa-requestid": "2.1.0",
"koa-router": "13.0.1",
"koa-ssl": "2.0.1"
},
"overrides": {
"semantic-release": {
"@semantic-release/npm": {
"npm": "$npm"
}
}
},
"devDependencies": {
"chai": "4.3.7",
"eslint": "8.44.0",
"eslint-config-emarsys": "5.1.0",
"koa": "2.5.1",
"mocha": "10.2.0",
"npm": "9.8.0",
"semantic-release": "21.0.7",
"sinon": "15.2.0",
"supertest": "6.3.3"
}
}