-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
40
41
42
43
44
45
{
"name": "cognito-auth",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=10.16",
"npm": "6.11"
},
"files": [
"package.json",
"package-lock.json",
"lib/**/*"
],
"directories": {},
"dependencies": {
"async-redis": "^1.1.7",
"redis": "^3.0.2"
},
"devDependencies": {
"jest": "^26.0.1",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"scripts": {
"lint": "npx tslint --project tsconfig.json --out build/lint/lint.xml --format checkstyle",
"lint-dev": "npx tslint --project tsconfig.json --format stylish",
"clean-dev": "npm prune production",
"build": "npx tsc",
"test": "jest --detectOpenHandles",
"build:watch": "npx tsc --watch",
"package": "serverless package --package build/artifact"
},
"keywords": [],
"author": "cloudauto",
"license": "ISC",
"jest-junit": {
"outputDirectory": "build/coverage/juint/",
"usePathForSuiteName": "true"
}
}