-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.67 KB
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
56
57
58
59
60
61
62
63
64
65
{
"name": "azure2git-tools",
"version": "1.0.0",
"description": "Add branch and commit buttons in azure web ui",
"scripts": {
"build:dev": "userscript-builder --mode=dev",
"build:prod": "userscript-builder --mode=bugfix",
"prepare": "husky install",
"release": "standard-version --commit-all",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/va4ok/azure2git-tools.git"
},
"author": "va4ok",
"license": "MIT",
"bugs": {
"url": "https://github.com/va4ok/azure2git-tools/issues"
},
"homepage": "https://github.com/va4ok/azure2git-tools#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.2",
"jest": "^27.2.0",
"lint-staged": "^11.1.2",
"standard-version": "^9.3.1",
"userscript-builder": "^0.4.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
},
"lint-staged": {
"src/**/*.js": [
"eslint"
]
},
"standard-version": {
"scripts": {
"postbump": "npm run build:prod && git add dist/azure2git.user.js"
}
},
"userscript": {
"entry": "./src/index.js",
"dev": "./dev",
"release": "./dist",
"fileName": "azure2git",
"meta": {
"name": "A2G tools",
"namespace": "http://tampermonkey.net/",
"homepage": "https://openuserjs.org/scripts/va4ok",
"match": "https://dev.azure.com/*",
"grant": "none"
}
}
}