-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
37 lines (37 loc) · 856 Bytes
/
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
{
"name": "git-blame",
"main": "./lib/index",
"version": "1.8.0",
"description": "Toggle git-blame annotations in the gutter of atom editor.",
"activationCommands": {
"atom-text-editor": [
"git-blame:toggle"
]
},
"repository": "https://github.com/alexcorre/git-blame",
"license": "MIT",
"engines": {
"atom": ">=1.0.0"
},
"scripts": {
"bump": "standard-version",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run lint"
},
"dependencies": {
"lodash": "^4.17.4",
"loophole": "1.0.x",
"moment": "^2.19.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"recompose": "^0.22.0"
},
"devDependencies": {
"@workpop/eslint-config-workpop": "^1.0.0",
"eslint": "^4.7.2",
"fs-plus": "^3.0.1",
"standard-version": "^4.0.0",
"temp": "^0.8.3"
}
}