forked from zemirco/playing-git
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 940 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 940 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
34
35
36
37
38
39
40
41
42
{
"name": "playing-git",
"description": "demo for git usage",
"url": "https://github.com/lipp/playing-git",
"keywords": [
],
"author": "Gerhard Preuss <gelipp@gmail.com>",
"contributors": [
{
"name": "Gerhard Preuss",
"email": "gelipp@gmail.com"
}
],
"devDependencies": {
"chai": "3.4.0",
"coveralls": "2.11.4",
"istanbul": "0.4.0",
"js-beautify": "1.5.10",
"mocha": "2.3.3"
},
"dependencies": {
},
"main": "./lib/playing-git.js",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/lipp/playing-git"
},
"license": "MIT",
"scripts": {
"test": "istanbul cover _mocha -- --recursive test",
"test_nocover": "mocha test"
},
"engines": {
"node": ">0.8.0"
},
"homepage": "http://github.com/lipp/playing-git",
"bugs": {
"url": "http://github.com/lipp/playing-git/issues",
"email": "gelipp@gmail.com"
}
}