-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.1 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
{
"name": "commit-book",
"main": "./lib/commit-book",
"version": "0.3.0",
"description": "Atom plugin to list your commits with handy features like search, sort, filter.",
"keywords": [
"git",
"commit",
"book",
"github"
],
"activationCommands": {
"atom-workspace": "commit-book:toggle"
},
"repository": "https://github.com/gauravchl/commit-book",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-babel6-transpiler": "^1.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"dugite": "^1.78.0",
"moment": "^2.22.2",
"node-emoji": "^1.8.1",
"react": "^16.5.2",
"react-date-range": "^1.0.0-beta",
"react-dom": "^16.5.2",
"react-gh-like-diff": "^1.0.0",
"react-table": "^6.8.6"
},
"atomTranspilers": [
{
"glob": "**/*.js",
"transpiler": "atom-babel6-transpiler",
"options": {
"setBabelEnv": true,
"babel": {
"presets": [
"es2015",
"react"
],
"babelrc": false
}
}
}
]
}