-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "86999-guess-melody",
"version": "0.1.0",
"private": true,
"description": "Личный проект «Угадай мелодию» от HTML Academy",
"author": "Александр Зинчук",
"repository": {
"type": "git",
"url": "[email protected]:htmlacademy-ecmascript/86999-guess-melody.git"
},
"bugs": {
"url": "https://github.com/htmlacademy-ecmascript/86999-guess-melody/issues"
},
"homepage": "https://github.com/htmlacademy-ecmascript/86999-guess-melody",
"babel": {
"presets": [
"es2015"
]
},
"main": "index.js",
"scripts": {
"eslint": "eslint js/",
"build": "gulp build",
"start": "gulp serve",
"test": "npm run eslint && gulp test"
},
"devDependencies": {
"autoprefixer": "6.5.1",
"babel-eslint": "7.1.0",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-register": "6.18.0",
"browser-sync": "2.17.5",
"css-mqpacker": "5.0.1",
"del": "^2.2.2",
"eslint": "3.9.0",
"eslint-config-htmlacademy": "0.1.x",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-csso": "2.0.0",
"gulp-imagemin": "3.1.0",
"gulp-mocha": "3.0.1",
"gulp-plumber": "1.1.0",
"gulp-postcss": "6.2.0",
"gulp-rename": "1.2.2",
"gulp-sass": "2.3.2",
"gulp-sourcemaps": "2.2.0",
"gulp-webpack": "^1.5.0",
"path": "0.12.7"
},
"engines": {
"node": "6.7.0"
},
"dependencies": {
"whatwg-fetch": "2.0.1"
}
}