-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 KB
/
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": "prisoner-game",
"channelName": "prisoner",
"description": "The iterated prisoner's dilemma game in which players can cooperate or defect.",
"version": "1.0.0",
"card": {
"description": "The iterated prisoner's dilemma game in which players can cooperate or defect.",
"url": "https://github.com/ewenw/prisonersgame",
"wiki": "https://en.wikipedia.org/wiki/Prisoner%27s_dilemma",
"icon": "grid_on"
},
"author": {
"name": "Ewen Wang",
"email": "wang.yuxu@northeastern.edu",
"url": "https://github.com/ewenw/"
},
"main": "./index.html",
"keywords": [
"nodegame",
"behavioral",
"prisoner",
"game theory"
],
"repository": {
"type": "git",
"url": "git://github.com/ewenw/prisonersgame.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"
}
}