forked from camillagds/Memory-Game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 823 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": "memory-game",
"version": "1.0.0",
"description": "fork of https://github.com/IgorMinar/Memory-Game",
"main": "web-server.js",
"dependencies": {
"ejs": "~1.0.0",
"express": "~4.14.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"start": "node web-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cgomestw/Memory-Game.git"
},
"keywords": [
"memory",
"game",
"angularjs"
],
"author": "camillagds",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/cgomestw/Memory-Game/issues"
},
"homepage": "https://github.com/cgomestw/Memory-Game#readme",
"devDependencies": {
"chai": "^3.5.0",
"expect": "^1.20.2",
"mocha": "^3.1.0",
"nodemon": "^1.11.0",
"request": "^2.79.0"
}
}