Skip to content

Commit 1285720

Browse files
committed
restructured to allow successful install from GitHub.
1 parent 899c7c0 commit 1285720

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Diff for: .npmignore

-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@ reports/
33
resolvers/
44

55
# config
6-
.babelrc
76
.eslintrc.yml
87
.travis.yml
98
appveyor.yml
109
.coveralls.yml
1110
.editorconfig
1211
.gitignore
13-
gulpfile.js
1412

1513
# project stuff
1614
*.sublime-*

Diff for: package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
"scripts": {
1010
"watch": "NODE_PATH=./lib gulp watch-test",
1111
"cover": "gulp pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress",
12+
"pretest": "eslint ./src",
1213
"test": "NODE_PATH=./lib gulp test",
1314
"ci-test": "eslint ./src && gulp pretest && istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot",
1415
"debug": "NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/",
15-
"prepublish": "eslint ./src && gulp prepublish",
16+
"prepublish": "gulp prepublish",
1617
"coveralls": "cat ./reports/coverage/lcov.info | coveralls"
1718
},
1819
"repository": {

0 commit comments

Comments
 (0)