This commit is contained in:
joshaber 2016-04-18 16:04:23 -04:00
Родитель 30e0725d5c
Коммит 74204c6338
5 изменённых файлов: 20 добавлений и 3 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -1,3 +1,4 @@
node_modules/
typings/
build/
*.d.ts

Просмотреть файл

@ -1,4 +1,5 @@
node_modules/
typings/
*.d.ts
!index.d.ts

5
lib/index.ts Normal file
Просмотреть файл

@ -0,0 +1,5 @@
import * as NodeGit from 'nodegit'
export default class Repository {
repository: NodeGit.Repository
}

Просмотреть файл

@ -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"
}
}

5
typings.json Normal file
Просмотреть файл

@ -0,0 +1,5 @@
{
"ambientDependencies": {
"node-git": "registry:dt/node-git#0.0.0+20160316155526"
}
}