Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
code / usr / share / code / resources / app / node_modules / winreg / appveyor.yml
Size: Mime:
branches:
  only:
    - master

platform:
  - x86
  - x64

# Install scripts. (runs after repo cloning)
install:
  # Get the latest stable version of Node.js or io.js
  # - ps: Install-Product node $env:NODEJS_VERSION $env:platform
  # install modules
  - npm install

# Post-install test scripts.
test_script:
  # Output useful info for debugging.
  - node --version
  - npm --version
  # generate documentation
  - npm run-script generate-docs
  # run tests
  - npm test

# Don't actually build.
build: off