File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ coverage
20
20
# node-waf configuration
21
21
.lock-wscript
22
22
23
- # Compiled binary addons (http://nodejs.org/api/addons.html)
24
- build / Release
23
+ # Build directory
24
+ build
25
25
26
26
# Dependency directory
27
27
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
Original file line number Diff line number Diff line change
1
+ # Test directories
2
+ spec
3
+ build /spec
Original file line number Diff line number Diff line change 2
2
"name" : " nodegit-flow" ,
3
3
"version" : " 0.1.3" ,
4
4
"description" : " nodegit-flow contains gitflow methods that aren't include in the vanilla nodegit package" ,
5
- "main" : " src/index.js" ,
5
+ "main" : " build/ src/index.js" ,
6
6
"scripts" : {
7
+ "compile" : " babel --presets es2015 -d ./build/src ./src" ,
7
8
"eslint" : " ./node_modules/.bin/eslint src" ,
8
- "test" : " ./node_modules/.bin/jasmine-node spec"
9
+ "prepublish" : " babel --presets es2015 -d ./build/src ./src" ,
10
+ "test" : " npm run eslint && babel --presets es2015 -d ./build/spec ./spec && npm run compile && ./node_modules/.bin/jasmine-node build/spec"
9
11
},
10
12
"repository" : {
11
13
"type" : " git" ,
17
19
" gitflow" ,
18
20
" nodegit"
19
21
],
22
+ "files" : [
23
+ " build/src"
24
+ ],
20
25
"author" : " Jose Garcia" ,
21
26
"license" : " ISC" ,
22
27
"bugs" : {
27
32
"nodegit" : " ^0.5.0"
28
33
},
29
34
"devDependencies" : {
35
+ "babel-cli" : " ^6.3.15" ,
36
+ "babel-preset-es2015" : " ^6.3.13" ,
30
37
"eslint" : " ^1.9.0" ,
31
38
"jasmine-node" : " ^1.14.5" ,
32
39
"jasmine-pit" : " ^2.0.2"
You can’t perform that action at this time.
0 commit comments