Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add coverage and yarn.lock and files key #22

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
node_modules/
.DS_Store
.nyc_output
coverage
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
sudo: false
language: node_js
node_js:
- "0.10"
- "0.10"
- "4"
- "6"
- "stable"

cache: yarn
18 changes: 12 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,24 @@
"name": "browserify-zlib",
"version": "0.1.4",
"description": "Full zlib module for browserify",
"keywords": ["zlib", "browserify"],
"main": "index.js",
"keywords": [
"zlib",
"browserify"
],
"main": "src/index.js",
"files": [
"src"
],
"directories": {
"test": "test"
},
"dependencies": {
"pako": "~0.2.0"
},
"devDependencies": {
"tape": "^2.12.3",
"brfs": "^1.0.1"
"brfs": "^1.0.1",
"nyc": "^10.1.2",
"tape": "^2.12.3"
},
"testling": {
"files": "test/*.js",
Expand All @@ -28,9 +35,8 @@
]
},
"scripts": {
"test": "node_modules/tape/bin/tape test/*.js"
"test": "nyc tape test/*.js"
},
"main": "src/index.js",
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"repository": {
Expand Down
Loading