Browse Source

Merge pull request #542 from fanatid/feature/package.json-files

whitelist of files for npm package
hk-custom-address
Daniel Cousens 9 years ago
parent
commit
2f2e50092c
  1. 4
      .npmignore
  2. 14
      .travis.yml
  3. 3
      package.json

4
.npmignore

@ -1,4 +0,0 @@
.gitignore
.travis.yml
jshint.json
test/

14
.travis.yml

@ -1,19 +1,19 @@
sudo: false
language: node_js language: node_js
before_install: before_install:
- npm install npm -g - npm install npm -g
node_js: node_js:
- 5 - "0.10"
- 4 - "0.12"
- io.js - "io.js"
- 0.12 - "4"
- 0.10 - "5"
matrix: matrix:
include: include:
- node_js: 4 - node_js: "4"
env: TEST_SUITE=standard env: TEST_SUITE=standard
env: env:
- TEST_SUITE=coverage - TEST_SUITE=coverage
- TEST_SUITE=integration - TEST_SUITE=integration
- TEST_SUITE=unit - TEST_SUITE=unit
script: npm run-script $TEST_SUITE script: npm run-script $TEST_SUITE
sudo: false

3
package.json

@ -44,6 +44,9 @@
"type": "git", "type": "git",
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git" "url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
}, },
"files": [
"src"
],
"config": { "config": {
"blanket": { "blanket": {
"pattern": [ "pattern": [

Loading…
Cancel
Save