-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·27 lines (27 loc) · 822 Bytes
/
package.json
File metadata and controls
executable file
·27 lines (27 loc) · 822 Bytes
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
{
"name": "buildfireplugin",
"version": "0.0.1",
"description": "template for a buildfire plugin using gulp",
"main": "index.js",
"scripts": {
"build": "gulp build && cd ../ && rm -rf userDirectoryPlugin.zip && zip -r userDirectoryPlugin.zip userDirectoryPlugin_release -x *node_modules* *.git*"
},
"author": "Daniel Hindi",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"del": "^3.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-csso": "^3.0.0",
"gulp-eslint": "^4.0.0",
"gulp-html-replace": "^1.6.2",
"gulp-htmlmin": "^3.0.0",
"gulp-imagemin": "^6.0.0",
"gulp-minify": "^3.1.0",
"gulp-uglify": "^3.0.0"
}
}