-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 924 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
{
"name": "@tjkorthal/connect-four",
"version": "1.0.0",
"description": "Connect Four based JS game",
"main": "./js/main.js",
"dependencies": {},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"faucet": "0.0.1",
"tape": "^4.7.0"
},
"scripts": {
"test": "node tests/test.js | faucet",
"build": "browserify js/main.js > js/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjkorthal/connect-four.git"
},
"keywords": [
"connect",
"four",
"game"
],
"author": "Tyler Korthal",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjkorthal/connect-four/issues"
},
"homepage": "https://github.com/tjkorthal/connect-four#readme"
}