-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.35 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
{
"name": "empirical-tc-ts",
"version": "0.0.1",
"description": "POC regarding the experimental determination of time complexities of algorithms written in TypeScript",
"author": {
"name": "Guilherme Gonçalves <guligon90>",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "rm -rf build && tsc",
"dev": "ts-node-dev src/index.ts",
"coverage": "ts-node test --coverage --silent",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"prettier": "prettier --config .prettierrc.cjs '**/*.{js,ts,json,md}' --write",
"start": "yarn build && node build/src/index.js",
"update:toc": "doctoc ./README.md --github",
"test": "ts-node test"
},
"dependencies": {
"@js-joda/core": "^5.2.0",
"nodeplotlib": "^1.0.1",
"reflect-metadata": "^0.1.13",
"typescript": "^4.6.3"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"doctoc": "^2.1.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8"
}
}