-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.57 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
50
51
52
53
54
55
56
{
"name": "@thezelijah/majik-service",
"version": "1.0.2",
"description": "Majik Service is a fully-featured class representing a service in the Majik system, designed for financial management, cost tracking, and capacity planning. It provides utilities for computing revenue, profit, margins, COS (Cost of Service), and net income on a per-month basis. Chainable setter methods make it easy to construct and update services fluently.",
"license": "ISC",
"author": "Zelijah",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jedlsf/majik-service.git"
},
"keywords": [
"majik",
"majik-service",
"service-management",
"service-finance",
"cost-of-service",
"COS",
"revenue-calculation",
"profit-calculation",
"financial-modeling",
"capacity-planning",
"resource-planning",
"timesheet",
"billing",
"pricing",
"business-tools",
"typescript",
"javascript",
"enterprise-tools",
"monetary-calculation",
"majik-money",
"service-analytics",
"forecasting"
],
"homepage": "https://github.com/jedlsf/majik-service#readme",
"bugs": {
"url": "https://github.com/jedlsf/majik-service/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@thezelijah/majik-money": "^1.0.4",
"nanoid": "^5.1.6",
"typescript": "^5.9.3"
}
}