forked from atom/git-utils
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "@pulsar-edit/git-utils",
"description": "A package for using Git repositories",
"version": "5.7.3",
"license": "MIT",
"author": {
"name": "Kevin Sawicki",
"email": "[email protected]"
},
"contributors": [
{
"name": "Garen J. Torikian",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/atom/git-utils.git"
},
"bugs": {
"url": "https://github.com/atom/git-utils/issues"
},
"homepage": "http://atom.github.io/git-utils",
"keywords": [
"git",
"libgit2",
"dvcs",
"vcs"
],
"main": "./src/git.js",
"devDependencies": {
"jasmine-focused": "^1.0.4",
"standard": "^10.0.3",
"temp": "~0.9.4",
"underscore": "~1.5.2",
"wrench": "~1.4.4"
},
"dependencies": {
"fs-plus": "^3.0.0",
"nan": "^2.14.2"
},
"scripts": {
"lint": "standard src spec",
"test": "jasmine-focused --captureExceptions spec",
"prepare": "git submodule update --init --recursive"
}
}