-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "splitwise-js-map",
"version": "1.0.3",
"description": "Minimize Cash Flow among a given set of friends who have borrowed money from each other. Given a number of friends who have to give or take some amount of money from one another. Design an algorithm by which the total cash flow among all the friends is minimized.",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"test": "npm run build && node test",
"test-ts": "npm run build && npx ts-node test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahtrahdis7/node-splitwise-js.git"
},
"keywords": [
"splitwise",
"javascript",
"algorithm",
"Javascript",
"split-wise",
"split-wize",
"splitwize",
"split"
],
"author": "Sidhartha Mallick",
"license": "ISC",
"bugs": {
"url": "https://github.com/ahtrahdis7/node-splitwise-js/issues"
},
"homepage": "https://github.com/ahtrahdis7/node-splitwise-js#readme",
"devDependencies": {
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}