-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 KB
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
{
"name": "@peritoz/quantitative-analysis",
"version": "0.1.6",
"description": "Quantitative analysis engine for workload, response time, processing time and resource utilization estimation.",
"main": "dist/lib/index.js",
"types": "dist/@types/index.d.ts",
"files": [
"dist/**/*",
"@types/**/*"
],
"author": "diorbert.pereira",
"repository": "github:Peritoz/quantitative-analysis",
"engines": {
"node": ">= 12"
},
"scripts": {
"test": "jest",
"build": "tsc --project tsconfig.build.json && tscpaths -p tsconfig.build.json -s ./src -o ./dist/lib && tscpaths -p tsconfig.build.json -s ./src -o ./dist/@types"
},
"_moduleAliases": {
"@libs": "src/libs"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Peritoz/quantitative-analysis/issues"
},
"homepage": "https://github.com/Peritoz/quantitative-analysis#readme",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@types/node": "^17.0.5",
"babel-plugin-module-resolver": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tscpaths": "^0.0.9",
"typescript": "^4.8.4"
},
"keywords": [
"architecture",
"performance",
"workload",
"response time",
"processing time",
"quantitative analysis"
]
}