-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
{
"name": "@kodasoftware/koa-bundle",
"version": "0.1.1",
"description": "",
"main": "index.js",
"outDir": "dist",
"scripts": {
"build": "tsc --listFiles -p tsconfig.json",
"pre-compile": "rm -rf dist/",
"compile": "npm run build && npm run post-compile",
"post-compile": "cp package.json package-lock.json $npm_package_outDir",
"test": "ts-mocha -p test/tsconfig.json 'test/**/*.spec.ts' --exit",
"post-publish": "git tag v$npm_package_version && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kodasoftware/koa-bundle.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kodasoftware/koa-bundle/issues"
},
"homepage": "https://github.com/kodasoftware/koa-bundle#readme",
"dependencies": {
"@koa/cors": "^2.2.3",
"@koa/router": "^8.0.0",
"ajv": "^6.10.2",
"formidable": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-body": "^4.1.0",
"koa-compose": "^4.1.0",
"koa-json": "^2.0.2",
"koa-mount": "^4.0.0",
"koa-pino-logger": "^2.1.3",
"koa2-swagger-ui": "^2.15.3",
"swagger-jsdoc": "^3.4.0",
"uuid-random": "^1.0.9"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/formidable": "^1.0.31",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.0.49",
"@types/koa-compose": "^3.2.4",
"@types/koa-json": "^2.0.18",
"@types/koa-mount": "^4.0.0",
"@types/koa-pino-logger": "^2.1.5",
"@types/koa__router": "^8.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.9",
"@types/request-promise": "^4.1.45",
"@types/should": "^13.0.0",
"@types/swagger-jsdoc": "^3.0.2",
"mocha": "^6.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"should": "^13.2.3",
"testdouble": "^3.12.3",
"ts-mocha": "^6.0.0",
"ts-node": "^8.3.0",
"tsc": "^1.20150623.0",
"typescript": "^3.5.3"
}
}