-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "atom-git-diff-plus",
"version": "1.0.0",
"main": "./src/main.js",
"license": "MIT",
"author": "Utkarsh Gupta <utkarshgupta137@gmail.com>",
"repository": "https://github.com/utkarshgupta137/atom-git-diff-plus",
"description": "A replacement for the in-built git-diff package with some nice additions",
"keywords": [
"atom",
"diff",
"git",
"plus"
],
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"activationHooks": [
"core:loaded-shell-environment"
],
"dependencies": {
"atom-select-list": "^0.7.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"standard-version": "^9.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}