-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 985 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 985 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
28
29
30
31
32
33
{
"name": "chrome-extension-typescript-boilerplate",
"version": "1.0.0",
"description": "Boilerplate code to develop Chrome extensions using TypeScript",
"main": "gulpfile.js",
"dependencies": {
"del": "^5.1.0",
"gulp-css-minify": "^0.9.2",
"gulp-merge-json": "^2.1.0",
"gulp-uglify": "^3.0.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prod": "gulp --config PROD",
"dev": "gulp --watch"
},
"repository": {
"type": "git",
"url": "git@github.com:AbhinavS96/Chrome-Extension-TypeScript-Boilerplate.git"
},
"author": "Abhinav",
"license": "ISC",
"bugs": {
"url": "https://github.com/AbhinavS96/Chrome-Extension-TypeScript-Boilerplate/issues"
},
"homepage": "https://github.com/AbhinavS96/Chrome-Extension-TypeScript-Boilerplate#readme",
"devDependencies": {
"@types/chrome": "^0.0.197",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"typescript": "^4.8.4"
}
}