-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.6 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
{
"name": "game-of-life",
"version": "1.0.0",
"description": "Game of life implementation in redux and ES2015",
"dependencies": {},
"devDependencies": {
"babel-core": "6.18.2",
"babel-loader": "6.2.8",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-2": "6.18.0",
"babel-register": "6.18.0",
"browser-sync": "2.18.2",
"del": "2.2.2",
"gulp": "git://github.com/gulpjs/gulp.git#e9e5ab7e70080e1bfb5650a4fdc4c8849e70b3e0",
"gulp-autoprefixer": "3.1.1",
"gulp-ava": "0.15.0",
"gulp-changed": "1.3.2",
"gulp-clean-css": "2.0.13",
"gulp-filter": "4.0.0",
"gulp-htmlmin": "3.0.0",
"gulp-if": "2.0.2",
"gulp-less": "3.3.0",
"gulp-load-plugins": "1.4.0",
"gulp-plumber": "1.1.0",
"gulp-rev": "7.1.2",
"gulp-rev-manifest-replace": "0.0.4",
"gulp-sourcemaps": "1.9.1",
"gulp-util": "3.0.7",
"jsdom": "9.8.3",
"normalize.css": "5.0.0",
"redux": "3.6.0",
"uglify-loader": "1.3.0",
"webpack": "1.13.3",
"webpack-stream": "3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hurtak/game-of-life"
},
"author": "Petr Huřťák ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/hurtak/game-of-life/issues"
},
"standard": {
"parser": "babel-eslint"
},
"scripts": {
"dev": "gulp --color dev",
"dist": "gulp --color dist"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"ava": {
"require": [
"babel-core/register"
],
"babel": "inherit"
},
"homepage": "http://hurtak.github.io/game-of-life/"
}