forked from rdbrck/jira-template-injector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "jti",
"version": "1.0.0",
"description": "A browser extension that automatically populates a JIRA issue's description field with a predefined template based on issue type.",
"scripts": {
"test": "echo \"Error: no test specified.\" && exit 1",
"lint": "eslint src/js/** src/jti_*",
"clean": "rm -f jti.crx jti.zip",
"bump": "versiony src/manifest.json",
"pack": "crx pack src -o jti.crx --zip-output jti.zip",
"build": "npm run lint && npm run pack",
"rebuild": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/rdbrck/jira-template-injector.git"
},
"keywords": [
"JIRA",
"JIRA Agile",
"Greenhopper",
"Atlassian"
],
"author": "Redbrick",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdbrck/jira-template-injector/issues"
},
"devDependencies": {
"crx": "^3.0.3",
"eslint": "^2.13.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"json": "^9.0.4",
"versiony-cli": "^1.3.0"
}
}