-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 884 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 884 Bytes
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
{
"name": "gitchat",
"version": "1.0.0",
"description": "Abstraction on top of the Github API that allows for use of Git as a chat service.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goonism/gitchat.git"
},
"keywords": [
"git",
"chat"
],
"author": "@coldsauce",
"license": "MIT",
"bugs": {
"url": "https://github.com/goonism/gitchat/issues"
},
"homepage": "https://github.com/goonism/gitchat#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2017": "^6.24.1",
"github-api": "^3.0.0"
}
}