Add nodegit
This commit is contained in:
Родитель
30e0725d5c
Коммит
74204c6338
|
@ -1,3 +1,4 @@
|
|||
node_modules/
|
||||
typings/
|
||||
build/
|
||||
*.d.ts
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
node_modules/
|
||||
typings/
|
||||
*.d.ts
|
||||
|
||||
!index.d.ts
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
import * as NodeGit from 'nodegit'
|
||||
|
||||
export default class Repository {
|
||||
repository: NodeGit.Repository
|
||||
}
|
11
package.json
11
package.json
|
@ -1,8 +1,9 @@
|
|||
{
|
||||
"name": "nodegit-wrapper",
|
||||
"version": "1.0.0",
|
||||
"version": "0.0.1",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"main": "./build/index.js",
|
||||
"typings": "./build/index.d.ts",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"prepublish": "tsc"
|
||||
|
@ -10,6 +11,10 @@
|
|||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"typescript": "^1.8.10"
|
||||
"typescript": "^1.8.10",
|
||||
"typings": "^0.7.12"
|
||||
},
|
||||
"dependencies": {
|
||||
"nodegit": "^0.12.2"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"ambientDependencies": {
|
||||
"node-git": "registry:dt/node-git#0.0.0+20160316155526"
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче