-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 904 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 904 Bytes
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
{
"name": "tic-tac-toe-ai-engine",
"version": "1.0.9",
"description": "Agnostic Tic Tac Toe game engine. Should be able to plug into any javascript program and provide a simple Tic Tac Toe AI API.",
"main": "index.js",
"scripts": {
"test": "nyc jasmine"
},
"keywords": [
"tic",
"tac",
"toe",
"ai",
"engine",
"TicTacToe",
"noughts",
"crosses",
"Xs",
"Os"
],
"author": "Marcellus Pelcher",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.13.0",
"istanbul": "^0.4.5",
"jasmine": "^2.5.3",
"jasmine-node": "^1.14.5",
"nyc": "^10.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SysCoder/tic-tac-toe-ai-engine.git"
},
"bugs": {
"url": "https://github.com/SysCoder/tic-tac-toe-ai-engine/issues"
},
"homepage": "https://github.com/SysCoder/tic-tac-toe-ai-engine#readme"
}