-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 892 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 892 Bytes
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
{
"name": "preference_optimization",
"version": "0.0.3",
"description": "Given a top N list of preferences between lists A & B and X maximum matches, maximise...something.",
"main": "dist/src/preferenceOptimization.js",
"types": "dist/src/preferenceOptimization.d.ts",
"repository": "https://github.com/FraserTooth/preference_optimization.git",
"author": "Fraser Tooth <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"@types/node": "^13.7.7",
"chai": "^4.2.0",
"mocha": "^7.1.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"deep-equal-in-any-order": "^1.0.24",
"lodash": "^4.17.15"
},
"scripts": {
"test": "mocha -r ts-node/register tests/*.spec.ts",
"prepublish": "tsc",
"build": "tsc"
}
}