-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 966 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "gallagher",
"version": "1.1.0",
"description": "Calculates the Gallagher Index for an election result.",
"author": "Keri Henare <[email protected]>",
"license": "MIT",
"main": "index.js",
"typings": "index.d.ts",
"keywords": [
"gallagher",
"gallagher-index",
"mmp",
"voting",
"mixed",
"member",
"proportional",
"formula"
],
"repository": {
"type": "git",
"url": "https://github.com/kerihenare/gallagher"
},
"bugs": {
"url": "https://github.com/kerihenare/gallagher/issues"
},
"homepage": "https://github.com/kerihenare/gallagher#readme",
"engines": {
"node": ">= 4.0.0"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "semistandard lib/*.js test/*.js",
"test": "npm run lint && nodeunit test"
},
"devDependencies": {
"nodeunit": "^0.11.3",
"semistandard": "^13.0.1"
},
"dependencies": {}
}