From 4314dced8fce07437db276b7650c100228790f91 Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Fri, 13 Jun 2014 15:10:23 +0200 Subject: [PATCH] Add package.json file, to make purl installable through npm The package name is purl-parser, because the name purl was already taken in the npm registry. --- package.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..775b9a5 --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "author": "allmarkedup", + "name": "purl-parser", + "version": "2.3.1", + "description": "An AMD compatible utility to parse urls and provide easy access to their attributes (such as the protocol, host, port etc), path segments, querystring parameters, fragment parameters and more.", + "main": "purl.js", + "repository": { + "type": "git", + "url": "https://github.com/allmarkedup/purl" + }, + "license": "MIT" +}