-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.55 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "pym2",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"test": "jest",
"lint": "tslint -p tsconfig.json",
"start": "bin/ts-node.sh app.ts & echo $! > .pid",
"stop": "kill $(cat .pid)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexneamtu/pym2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexneamtu/pym2/issues"
},
"homepage": "https://github.com/alexneamtu/pym2#readme",
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/koa": "^2.11.3",
"@types/koa-router": "^7.4.0",
"@types/lodash": "^4.14.149",
"@types/mime-types": "^2.1.0",
"@types/redis": "^2.8.17",
"@types/sharp": "^0.22.3",
"@types/supertest": "^2.0.8",
"jest": "^24.9.0",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.8.2",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.8.3"
},
"dependencies": {
"async-redis": "^1.1.7",
"koa": "^2.11.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.21",
"mime-types": "^2.1.26",
"sharp": "^0.25.2"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"roots": [
"<rootDir>/test"
],
"testEnvironment": "node",
"coverageDirectory": "<rootDir>/coverage",
"verbose": true,
"reporters": [
"default"
]
}
}