-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 902 Bytes
/
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
{
"name": "auction-matcher",
"version": "0.0.5",
"description": "A library for finding the optimal set of matches between a set of agents and a set of objects, using an auction algorithm.",
"author": "Chris Hooker",
"repository": "github:cjhooker/auction-matcher",
"main": "dist/auction-matcher.js",
"types": "dist/auction-matcher.d.ts",
"scripts": {
"start": "tsc && node dist/auction-matcher.js",
"test": "tsc && mocha \"dist/test/!(slow-tests).js\" --reporter spec",
"test-all": "tsc && mocha dist/test/*.js --reporter spec"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/csv-parse": "^1.1.11",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.7",
"chai": "^4.1.2",
"csv-parse": "^2.0.4",
"mocha": "^5.0.4",
"typescript": "^2.7.2"
},
"dependencies": {
"@types/random-seed": "^0.3.3",
"random-seed": "^0.3.0"
}
}