-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "junkyard-brawl",
"version": "0.3.0",
"description": "NodeJS implementation of the card game Junkyard Brawl",
"main": "index.js",
"engines": {
"node": ">=6.5"
},
"scripts": {
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"eslint": "eslint .",
"eslint:fix": "npm run eslint -- --fix",
"nyc": "nyc ava '**/*.spec.js'",
"test": "npm run eslint && npm run nyc",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gfax/junkyard-brawl.git"
},
"nyc": {
"exclude": [
"**/*.spec.js"
],
"report-dir": "./coverage",
"reporter": [
"json",
"text",
"html"
]
},
"keywords": [
"brawl",
"cards",
"card-game",
"game",
"junkyard",
"junkyard-brawl",
"tabletop"
],
"author": "Jay Thomas <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gfax/junkyard-brawl/issues"
},
"homepage": "https://github.com/gfax/junkyard-brawl#readme",
"dependencies": {
"js-yaml": "^3.10.0",
"lodash.assign": "^4.2.0",
"lodash.clone": "^4.5.0",
"lodash.find": "^4.6.0",
"lodash.findindex": "^4.6.0",
"lodash.flow": "^3.5.0",
"lodash.merge": "^4.6.0",
"lodash.sample": "^4.2.1",
"lodash.shuffle": "^4.2.0",
"lodash.template": "^4.4.0",
"lodash.times": "^4.3.2",
"lodash.uniq": "^4.5.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"ava": "^0.22.0",
"codecov": "^2.3.0",
"eslint": "^4.6.1",
"eslint-plugin-unicorn": "^2.1.2",
"nyc": "^11.2.1",
"sinon": "^3.2.1"
}
}