-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "timelorde",
"author": "Joseph N. Ruskiewicz",
"version": "1.0.0",
"license": "ISC",
"description": "A library for generating time series.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"exports": {
".": "./dist/index.js",
"./luxon": "./dist/luxon.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --ignore-path .prettierignore --write \"**/*.+(js|ts|json)\"",
"check": "tsc --noEmit",
"ci": "pnpm build && pnpm test && pnpm lint && pnpm check"
},
"dependencies": {
"@tensorflow/tfjs-node": "^3.17.0",
"luxon": "^2.4.0",
"seedrandom": "~2.4.4"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/luxon": "^2.3.2",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
}
}