-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "koa-session-getter",
"version": "0.0.28",
"description": "Koa's middleware that fill user seesion",
"repository": {
"type": "git",
"url": "git+https://github.com/devit-tel/koa-session-getter"
},
"main": "./build/main.js",
"types": "./build/main.d.ts",
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/node": "^10.12.18",
"jest": "~23.6.0",
"prettier": "1.15.3",
"rimraf": "^2.6.3",
"ts-jest": "~23.10.5",
"tslint": "~5.12.0",
"tslint-config-prettier": "1.17.0",
"tslint-microsoft-contrib": "~6.0.0",
"tsutils": "~3.7.0",
"typescript": "^3.2.2"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "npm run clean && tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Jakub Synowiec <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.19.0",
"lodash": "^4.17.11",
"tslib": "~1.9.3"
}
}