generated from CodeFactoryBerlin/OpenSourceRepoTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 991 Bytes
/
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": "@nielsandersen/time-series-library-js",
"author": "Niels Erik Andersen",
"description": "A library for managing and processing time series data.",
"version": "0.1.65",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"license": "CC-BY-NC-4.0",
"devDependencies": {
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"assert": "^2.0.0",
"c8": "^7.11.3",
"eslint": "latest",
"npm": "^8.5.5",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"vitest": "^0.18.1"
},
"scripts": {
"lint": "eslint --ext tsconfig.json",
"build": "rm ./dist -fdr && npx tsc",
"test": "npx vitest"
},
"keywords": [
"time series",
"iot",
"iiot",
"historian",
"machine learning",
"ai",
"analytics",
"signal processing"
],
"dependencies": {
"@js-temporal/polyfill": "^0.4.2",
"dayjs": "^1.11.3"
}
}