-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 902 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 902 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
{
"name": "lotuz-board-extender",
"version": "1.0.0",
"description": "A simple extension to add a \"fullscreen\" to lists on kanban boards. Currently it works for: - Gitlab - Github - Trello",
"scripts": {
"start": "parcel watch src/trello.js src/gitlab.js src/github.js",
"build": "parcel build src/trello.js src/gitlab.js src/github.js && cp static/* dist/ && zip board-extender.zip dist/*"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:lotuz/projects/031-board-extender-browser-extension.git"
},
"keywords": [],
"author": "lotuz",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"husky": "^4.2.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}