-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "grafgiti",
"version": "1.1.1",
"description": "Create graffity on your gritty github contributions wall",
"main": "lib/index.js",
"scripts": {
"test": "npm run eslint",
"eslint": "eslint ./src",
"babel": "babel src --out-dir lib",
"prepublish": "npm run babel",
"start": "NODE_PATH=./lib node ./bin/index.js",
"dev": "npm run babel && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohebifar/grafgiti.git"
},
"keywords": [
"graffity",
"github",
"contributions"
],
"bin": {
"grafgiti": "./bin/start.sh"
},
"author": "Mohamad Mohebifar",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohebifar/grafgiti/issues"
},
"homepage": "https://github.com/mohebifar/grafgiti#readme",
"dependencies": {
"babel-polyfill": "^6.7.4",
"blessed": "^0.1.81",
"moment": "^2.12.0",
"react": "^0.14.7",
"react-blessed": "^0.1.7",
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"simple-git": "^1.31.0",
"winston": "^2.2.0",
"redux-saga": "^0.9.5"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.3",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.5.0",
"eslint-plugin-jsx-a11y": "^1.0.2",
"eslint-plugin-react": "^5.0.1"
}
}