-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.86 KB
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
73
74
75
76
{
"name": "lambda-meta",
"version": "3.0.6",
"description": "AWS Lambda Metadata Handlers",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"type:": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/crrobinson14/lambda-meta.git"
},
"author": {
"name": "Chad Robinson"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/crrobinson14/lambda-meta/issues"
},
"homepage": "https://github.com/crrobinson14/lambda-meta#readme",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "tslint -c tslint.json --project tsconfig.json",
"prepublishOnly": "npm run build",
"cover": "nyc mocha",
"test": "cross-env NODE_ENV=test nyc mocha",
"test_circle": "cross-env NODE_ENV=test nyc mocha",
"test_circleX": "cross-env NODE_ENV=test node_modules/.bin/nyc mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./junit.xml"
},
"nyc": {
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src"
],
"exclude": [
"test"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"cache": true,
"all": true,
"check-coverage": true,
"report-dir": "./coverage"
},
"dependencies": {
"glob": "^7.1.6",
"type-check": "^0.3.2",
"uuidv4": "^6.0.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.41",
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.1",
"@types/node": "^12.12.27",
"@types/type-check": "^0.3.27",
"@types/uuid": "^3.4.7",
"aws-lambda": "^0.1.2",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"dirty-chai": "^2.0.1",
"mocha": "^6.2.2",
"mocha-junit-reporter": "^1.23.1",
"nyc": "^14.1.1",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
}
}