This repository has been archived by the owner on Nov 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.28 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@nrfcloud/aws-lambda-logging",
"version": "0.0.0-development",
"description": "AWS lambda logging helper",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"pretest": "npm run prepare",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"lint": "npm run tslint && npm run prettier:lint",
"tslint": "tslint --project ./tsconfig.json",
"prettier:lint": "prettier --list-different \"./src/*.ts\" \"./src/**/*.ts\" \"./__tests__/*.ts\" \"./__tests__/**/*.ts\"",
"prettier": "prettier --write \"./src/*.ts\" \"./src/**/*.ts\" \"./__tests__/*.ts\" \"./__tests__/**/*.ts\"",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/nRFCloud/aws-lambda-logging.git"
},
"keywords": [
"nRFCloud",
"IoT",
"NordicSemiconductor"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nRFCloud/aws-lambda-logging/issues"
},
"homepage": "https://github.com/nRFCloud/aws-lambda-logging#readme",
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-angular": "^8.0.0",
"@nrfcloud/tslint-config": "^3.7.0",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.2",
"aws-sdk": "^2.346.0",
"husky": "^3.0.1",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"semantic-release": "^17.0.1",
"ts-jest": "^24.0.0",
"tslint": "^5.11.0",
"typescript": "^3.1.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"coverageReporters": [
"html",
"lcov"
],
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"testURL": "http://localhost"
},
"files": [
"package-lock.json",
"dist",
"scripts",
"README.md"
],
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"saga"
]
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "npm run lint && npm test"
}
}
}