-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 849 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
{
"name": "project-structure",
"version": "0.0.3",
"description": "How to structure your project.",
"main": "index.js",
"scripts": {
"eslint": "./node_modules/.bin/eslint",
"gulp": "./node_modules/.bin/gulp",
"build": "yarn run gulp publish"
},
"keywords": [
"gulp",
"structure",
"project",
"folders",
"build"
],
"author": "Bruno Macedo <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"browser-sync": "^2.24.6",
"eslint": "^5.2.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-babel": "^7.0.1",
"gulp-html-partial": "^1.0.1",
"gulp-rename": "^1.3.0",
"gulp-sass": "^4.0.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8"
}
}