-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·42 lines (42 loc) · 1019 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
37
38
39
40
41
42
{
"name": "memory-game",
"description": "Memory game tutorial for simple JavaScript workshops",
"version": "0.0.1",
"author": {
"name": "Jouni Kaplas",
"email": "[email protected]",
"url": "http://kaplas.net"
},
"bugs": "https://github.com/cido/memory-game/issues",
"dependencies": {
"browser-sync": "~1.9.0",
"browserify": "~8.1.1",
"gulp": "~3.8.10",
"gulp-notify": "~2.1.0",
"gulp-sass": "~1.3.2",
"gulp-sourcemaps": "~1.3.0",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "~1.0.0",
"reactify": "~0.17.1",
"lodash": "~2.4.1"
},
"homepage": "https://github.com/cido/memory-game",
"keywords": [
"memory",
"game",
"javascript",
"tutorial",
"workshop",
"react"
],
"license": "MIT",
"main": "gulpfile.js",
"repository": {
"type": "git",
"url": "git://github.com/cido/memory-game.git"
},
"scripts": {
"start": "./node_modules/.bin/gulp",
"build": "./node_modules/.bin/gulp compile"
}
}