-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
{
"name": "@lsandini/cgmsim-lib",
"version": "0.5.5",
"description": "cgmsim-lib",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc -p tsconfig-build.json",
"doc": "typedoc",
"lint": "eslint",
"test": "jest --coverage --coverageReporters json-summary",
"test-ci": "jest --ci --coverage",
"format": "npx prettier --write src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lsandini/cgmsim-lib.git"
},
"keywords": [
"cgmsim",
"lib"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lsandini/cgmsim-lib/issues"
},
"homepage": "https://github.com/lsandini/cgmsim-lib#readme",
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.1.3",
"@types/d3": "^7.4.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.24",
"@types/node": "20.11.0",
"@types/node-fetch": "^2.6.7",
"@types/sharp": "^0.31.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.14.0",
"jest": "^26.5.5",
"jest-image-snapshot": "^5.2.0",
"prettier": "^3.1.0",
"sharp": "^0.31.1",
"ts-jest": "^26.5.6",
"typedoc": "^0.25.1",
"typedoc-plugin-markdown": "^3.16.0",
"typedoc-plugin-missing-exports": "^2.1.0",
"typedoc-theme-hierarchy": "^4.1.2"
},
"dependencies": {
"@logtail/pino": "^0.4.10",
"crypto": "^1.0.1",
"d3-node": "^3.0.0",
"dotenv": "^16.3.1",
"fs": "^0.0.1-security",
"fs-extra": "^10.1.0",
"https": "^1.0.0",
"jsdom": "^20.0.1",
"moment": "^2.29.4",
"node-fetch": "^2.7.0",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1",
"ts-dotenv": "^0.9.1",
"tslib": "^2.6.2",
"typescript": "^4.9.2"
}
}