This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "web_extension_environment",
"version": "0.0.0",
"description": "This repo serves as a basic template for extensions.",
"main": "background.js",
"scripts": {
"start": "gulp dev",
"dev": "gulp dev",
"build": "gulp build --includeDependencies",
"package": "gulp package",
"test": "jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philheller/web_extension_environment.git"
},
"keywords": [
"extension",
"environment"
],
"author": "Philip Heller",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/philheller/web_extension_environment/issues"
},
"homepage": "https://github.com/philheller/web_extension_environment#readme",
"devDependencies": {
"autoprefixer": "^10.4.2",
"cssnano": "^5.0.16",
"del": "^6.0.0",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-esbuild": "^0.10.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-npm-dist": "^1.0.3",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svgmin": "^4.1.0",
"gulp-zip": "^5.1.0",
"jest": "^27.4.7",
"node-notifier": "^10.0.0",
"path": "^0.12.7",
"sass": "^1.49.0",
"vinyl-buffer": "^1.0.1",
"yargs": "^17.3.1"
},
"dependencies": {
"jquery": "^3.6.0"
}
}