-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.16 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.16 KB
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
{
"name": "buildfireplugin",
"version": "0.0.1",
"description": "template for a buildfire plugin using gulp",
"main": "index.js",
"scripts": {
"start": "gulp build",
"build": "gulp build && cd ../ && rm -rf upVotePlugin.zip && zip -r upVotePlugin.zip upVotePlugin/ -x *node_modules* *.git* *.idea* *.vscode*",
"publish": "cd ../../ && buildfire plugin publish plugins/UpVotePlugin --prod --update",
"preinstall": "npx npm-force-resolutions",
"lint": "eslint --fix ."
},
"author": "BuildFire",
"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",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.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",
"terser": "^5.39.0"
},
"resolutions": {
"graceful-fs": "4.2.3"
}
}