forked from bifravst/timestream-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.33 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
96
97
98
99
100
{
"name": "@nordicsemiconductor/timestream-helpers",
"version": "0.0.0-development",
"description": "Helper functions which simplify working with AWS Timestream",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicSemiconductor/cloud-aws-timestream-helpers-js.git"
},
"bugs": {
"url": "https://github.com/NordicSemiconductor/cloud-aws-timestream-helpers-js/issues"
},
"homepage": "https://github.com/NordicSemiconductor/cloud-aws-timestream-helpers-js",
"keywords": [
"Cloud",
"IoT",
"Asset Tracker Cloud Example",
"Nordic Semiconductor"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"dependencies": {
"@aws-sdk/client-timestream-query": "3.7.0",
"@aws-sdk/client-timestream-write": "3.7.0"
},
"devDependencies": {
"@commitlint/cli": "12.0.1",
"@commitlint/config-angular": "12.0.1",
"@nordicsemiconductor/asset-tracker-cloud-code-style": "9.0.2",
"@nordicsemiconductor/eslint-config-asset-tracker-cloud-typescript": "7.0.7",
"@types/backoff": "2.5.1",
"@types/jest": "26.0.20",
"@types/node": "14.14.31",
"eslint": "7.21.0",
"husky": "5.1.2",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"pinst": "2.1.6",
"prettier": "2.2.1",
"ts-jest": "26.5.2",
"typescript": "4.2.2"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --ext .js,.ts"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
]
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"release": {
"branches": [
"saga",
{
"name": "!(saga)",
"prerelease": true
}
],
"remoteTags": true
},
"publishConfig": {
"access": "public"
},
"files": [
"package-lock.json",
"dist",
"LICENSE",
"README.md"
],
"jest": {
"testURL": "http://localhost",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".+\\.spec\\.ts$",
"globals": {
"ts-jest": {
"diagnostics": true
}
}
}
}