forked from eagle-io/converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "converter",
"version": "1.0.0",
"description": "Library of functions to convert timeseries data to JTS",
"main": "index.ts",
"repository": "https://github.com/eagle-io/converter",
"author": "jarrah@eagle.io",
"license": "GPL 3.0",
"dependencies": {
"@eagle-io/timeseries": "^1.0.5",
"csv-parse": "^5.3.0",
"dayjs": "^1.11.7"
},
"scripts": {
"unit": "jest",
"lint": "eslint --quiet --fix **/*.ts",
"compile": "tsc",
"test": "npm run compile && npm run unit && npm run lint"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.92",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.10.2",
"babel-jest": "^28.1.3",
"esbuild": "^0.14.14",
"esbuild-jest": "^0.5.0",
"eslint": "8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"jest": "^28.1.3",
"jest-junit": "^14.0.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.4.0",
"typescript": "^4.8.2"
}
}