-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "sindry",
"version": "1.2.2",
"description": "A low overhead structured logs for AWS Lambda.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build-package": "rm -rf lib && tsc && cp ./package.json ./lib",
"publish-package": "npm run build-package && npm publish --access=public",
"build-test": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build-package",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"test": "jest ",
"test:coverage": "jest --coverage --verbose",
"test:runInBand": "jest --runInBand"
},
"keywords": [
"aws",
"lambda",
"logger",
"stream",
"json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cadrogui/sindry.git"
},
"bugs": {
"url": "https://github.com/cadrogui/sindry/issues"
},
"author": "Mikel Carozzi",
"license": "MIT",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/aws-lambda": "^8.10.108",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"babel-jest": "^29.2.2",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^29.2.2",
"prettier": "^2.3.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14.0.0"
}
}