-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 KB
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
{
"name": "memory-js",
"version": "0.1.5",
"description": "A game of memory to be used in teaching JavaScript Design Patterns",
"main": "./bin/www",
"scripts": {
"start": "node ./bin/www",
"test": "mocha -R list --recursive; grunt --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/MoonTahoe/Memory.git"
},
"keywords": [
"Javascript",
"card",
"game",
"tutorial",
"design",
"patterns"
],
"author": "Moon Highway (Alex Banks)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MoonTahoe/Memory/issues"
},
"homepage": "https://github.com/MoonTahoe/Memory",
"dependencies": {
"express": "~4.2.0",
"grunt": "^0.4.5",
"morgan": "~1.0.0",
"static-favicon": "~1.0.0"
},
"devDependencies": {
"assert": "^1.1.1",
"debug": "^1.0.3",
"grunt": "^0.4.5",
"grunt-bump": "0.0.15",
"grunt-contrib-jasmine": "^0.6.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-less": "^0.11.4",
"grunt-contrib-uglify": "^0.5.0",
"mocha": "^1.20.1",
"phantomjs": "^1.9.7-14",
"supertest": "^0.13.0"
}
}