forked from timbru31/quickjira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "quickjira",
"version": "0.11.2",
"private": true,
"description": "WebExtension for Chrome, Firefox, Edge and Opera to quickly open JIRA with the corresponding ticket",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "rsync -av --exclude='js' src/ dist",
"tslint": "tslint -p tsconfig.json '{src,test}/**/*.ts'",
"stylelint": "stylelint --allow-empty-input 'src/**/*.css'",
"lint": "npm run tslint && npm run stylelint",
"prerelease": "npm run test && npm run build",
"release": "standard-version",
"pretest": "npm run lint",
"test": "echo soon!"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timbru31/quickjira.git"
},
"author": "Tim Brust <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timbru31/quickjira/issues"
},
"homepage": "https://github.com/timbru31/quickjira#readme",
"devDependencies": {
"@types/chrome": "^0.0.86",
"addons-linter": "^1.10.1",
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"standard-version": "^6.0.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,css,md,yml}": [
"prettier --write",
"git add"
]
}
}