-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.68 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.68 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "functional-api",
"version": "1.6.0",
"description": "Functional API server for node.js base on Koa and TypeScript",
"author": "Cong Min",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mcc108/functional-api.git"
},
"bugs": {
"url": "https://github.com/mcc108/functional-api/issues"
},
"main": "src/app.ts",
"types": "src/typings.d.ts",
"bin": {
"functional-api": "bin/index.js"
},
"files": [
"bin",
"src",
"tsconfig.json"
],
"scripts": {
"test": "ava",
"coverage": "c8 npm test",
"coverage:report": "c8 report && codecov"
},
"dependencies": {
"@types/koa": "^2.11.6",
"@types/koa-logger": "^3.1.1",
"@types/node": "^14.14.6",
"commander": "^6.2.0",
"execa": "^4.1.0",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-logger": "^3.2.1",
"lodash": "^4.17.20",
"minimatch": "^3.0.4",
"npm-run-path": "^4.0.1",
"strip-ansi": "^6.0.0",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
},
"devDependencies": {
"@koa/cors": "^3.1.0",
"@types/chai": "^4.2.14",
"ava": "^3.13.0",
"c8": "^7.3.4",
"chai": "^4.2.0",
"codecov": "^3.8.0",
"form-data": "^3.0.0",
"get-port": "^5.1.1",
"got": "^11.8.0",
"qs": "^6.9.4"
},
"ava": {
"require": [
"ts-node/register"
],
"extensions": [
"js",
"ts"
],
"files": [
"test/**/*.spec.ts"
],
"verbose": true,
"failWithoutAssertions": false
},
"c8": {
"all": true,
"include": [
"bin/**",
"src/**"
],
"reporter": [
"html",
"lcov",
"text"
]
}
}