-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.9 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
69
70
71
72
{
"name": "aws-log",
"version": "0.11.2",
"description": "A logging framework for AWS Lambda",
"keywords": [
"serverless",
"typescript",
"aws",
"lambda",
"logging"
],
"repository": "https://github.com/inocan-group/aws-log",
"license": "MIT",
"author": "Ken Snyder <[email protected]>",
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"typings": "lib/es/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && tsc && tsc -P tsconfig.es.json",
"clean": "rimraf lib",
"lint": "yarn eslint src/**/*.ts && yarn eslint test/**/*.ts",
"test": "node_modules/.bin/ts-node scripts/test"
},
"dependencies": {
"traverse": "^0.6.6"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.118",
"@types/mocha": "^8.2.0",
"@types/node": "14",
"@types/rimraf": "^3.0.0",
"@types/traverse": "^0.6.32",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"async-shelljs": "^0.1.4",
"aws-sdk": ">=2.518.0",
"chai": "^4.2.0",
"common-types": "^1.21.0",
"do-devops": "^0.6.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^5.1.0",
"js-yaml": "^4.0.0",
"lodash.first": "^3.0.0",
"lodash.last": "^3.0.0",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.0",
"rollup": "^2.36.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-multi-input": "^1.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"test-console": "^1.1.0",
"ts-node": "^9.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
},
"peerDependencies": {
"common-types": "^1.21.0"
},
"engines": {
"node": ">=6.0.0"
}
}