-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "gitrocket",
"version": "1.0.5",
"description": "A rocket ship that launches in your Hyper terminal when you push code with Git.",
"main": "dist/index.js",
"files": [
"dist/index.js",
"dist/index.js.map"
],
"scripts": {
"build": "webpack -p",
"dev": "webpack --watch",
"lint": "eslint --ext .jsx --ext .js src/ --ignore-path .gitignore; exit 0",
"fix": "eslint --ext .jsx --ext .js src/ --ignore-path .gitignore --fix; exit 0"
},
"author": {
"name": "Bomani McClendon",
"email": "bomanimc@gmail.com"
},
"license": "MIT",
"keyword": [
"hyper",
"hyper.app",
"hyperapp",
"hyperterm",
"terminal",
"rocket",
"ship",
"animation"
],
"repository": "bomanimc/gitrocket",
"bugs": {
"url": "https://github.com/bomanimc/gitrocket/issues"
},
"dependencies": {
"path": "^0.12.7",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"styled-components": "^2.1.1",
"webpack": "^2.2.0",
"webpack-node-externals": "^1.6.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0"
}
}