-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 970 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
{
"name": "ultimatum-game",
"channelName": "ultimatum",
"description": "Plays an ultimatum game with nodegame.",
"card": {
"description": "Ultimatum game: take it or leave it",
"url": "https://github.com/nodeGame/ultimatum-game",
"wiki": "https://en.wikipedia.org/wiki/Ultimatum_game",
"icon": "group_work"
},
"version": "7.0.2",
"author": {
"name": "Stefano Balietti",
"email": "[email protected]",
"url": "http://stefanobalietti.com"
},
"main": "./index.html",
"keywords": [
"nodegame",
"behavioral",
"ultimatum",
"game theory"
],
"repository": {
"type": "git",
"url": "git://github.com/nodegame/ultimatum.git"
},
"license": "MIT",
"devDependencies": {
"mocha": ">= 2.1.0",
"should": ">= 5.0.0"
},
"engines": {
"node": "*",
"nodegame": ">= 4.0.0"
},
"homepage": "http://nodegame.org",
"scripts": {
"test": "./node_modules/.bin/mocha ./test/test.*.js"
}
}