-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "four-in-a-row",
"version": "1.0.1",
"description": "Four-In-A Row game logic library. No need to write the logic for the game yourself",
"type": "module",
"exports": "./src/index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "http-server -c-1 -o /demo",
"prod": "rollup --config rollup.config.js --configPlugin @rollup/plugin-terser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colinkiama/four-in-a-row.git"
},
"keywords": [
"fourinarow",
"four",
"in",
"a",
"row",
"connect",
"four",
"connectfour",
"connect",
"4",
"connect4",
"library",
"logic",
"game",
"board",
"simulation",
"simulate",
"yellow",
"red",
"token",
"tokens",
"lib"
],
"author": "Colin Kiama <[email protected]> (https://colinkiama.com)",
"bugs": {
"url": "https://www.github.com/colinkiama/four-in-a-row/issues"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "0.4.4",
"http-server": "14.1.1",
"rollup": "4.9.6"
}
}