-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 869 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 869 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
39
{
"name": "nuts",
"version": "0.0.1",
"description": "Play with node to do an unpretentious poker game.",
"main": ".\\src\\index.js",
"scripts": {
"test": "grunt simplemocha"
},
"repository": {
"type": "git",
"url": "https://github.com/MiniKeb/nuts.git"
},
"keywords": [
"poker",
"node",
"javascript",
"js"
],
"author": "MiniKeb",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/MiniKeb/nuts/issues"
},
"homepage": "https://github.com/MiniKeb/nuts",
"devDependencies": {
"mocha": "~1.15.1",
"grunt-mocha-test": "~0.8.1",
"grunt": "~0.4.2",
"underscore": "~1.5.2",
"grunt-simple-mocha": "^0.4.0",
"grunt-contrib-watch": "^0.6.1"
},
"dependencies": {
"json-socket": "~0.1.2",
"readline": "0.0.3",
"events": "~1.0.0",
"node.extend": "~1.0.9"
}
}