├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── convert-range.js ├── package.json ├── sver.js └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | test 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspm/sver/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspm/sver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspm/sver/HEAD/README.md -------------------------------------------------------------------------------- /convert-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspm/sver/HEAD/convert-range.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspm/sver/HEAD/package.json -------------------------------------------------------------------------------- /sver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspm/sver/HEAD/sver.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspm/sver/HEAD/test/index.js --------------------------------------------------------------------------------