-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.78 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "git-link",
"main": "./lib/git-link",
"version": "0.8.0",
"description": "Easily get the repository link to the current file, line or a selection",
"keywords": [
"azure-devops",
"bitbucket",
"github",
"gitlab",
"git",
"atom",
"code",
"commits",
"copy",
"link",
"permalink",
"review",
"share",
"url"
],
"repository": "https://github.com/keevan/git-link",
"license": "MIT",
"release": {
"extends": "@semantic-release/apm-config",
"branches": [
"main"
]
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"atomTranspilers": [
{
"glob": "{lib,test}/**/*.js",
"transpiler": "@atom/babel7-transpiler",
"options": {
"cacheKeyFiles": [
"package.json",
".babelrc.js"
],
"setBabelEnv": "ATOM_GITHUB_BABEL_ENV"
}
}
],
"dependencies": {
"@atom/babel7-transpiler": "1.0.0-1",
"@babel/core": "7.x <7.12.10",
"@babel/generator": "7.8.0",
"@babel/plugin-proposal-object-rest-spread": "7.8.0",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.8.0",
"reverse-string-template": "^1.0.0"
},
"consumedServices": {
"command-palette-plus": {
"versions": {
"0.1.0": "consumePallete"
}
}
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/apm-config": "^9.0.1",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"semantic-release": "^19.0.2"
},
"scripts": {
"postinstall": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}