-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 879 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
29
30
31
32
33
{
"name": "single-transferable-vote",
"version": "0.1.0",
"description": "Calculate the winners of an election using the single transferable vote voting system",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --compilers ts:ts-node/register"
},
"dependencies": {
"es6-shim": "^0.35.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3",
"mocha-typescript": "^1.0.4",
"ts-node": "^0.9.3",
"typescript": "^2.0.0"
},
"main": "index.js",
"keywords": [
"vote",
"voting"
],
"repository": {
"type": "git",
"url": "git+https://github.com/positron/single-transferable-vote.git"
},
"bugs": {
"url": "https://github.com/positron/single-transferable-vote/issues"
},
"author": "Philip Jagielski",
"license": "ISC",
"homepage": "https://github.com/positron/single-transferable-vote#readme"
}