Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
added npm package manifest and .npmignore file to properly package no…
Browse files Browse the repository at this point in the history
…de module
  • Loading branch information
Nick Desaulniers committed Jun 11, 2012
1 parent f5e98c7 commit d66e15a
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .npmignore
@@ -0,0 +1,9 @@
doctestjs/
mocks.js
README.md
test-ui.html
test.html
urlmatch.js
npm-debug.log
MockHttpRequest/
node_modules/
46 changes: 46 additions & 0 deletions package.json
@@ -0,0 +1,46 @@
{
"author": {
"name": "Ian Bicking",
"email": "ibicking@mozilla.com"
},
"contributors": [
{
"name": "Nick Desaulniers",
"email": "ndesaulniers@mozilla.com"
}
],
"name": "receiptverifier",
"description": "Verify Open Web App Receipts",
"version": "0.0.3",
"homepage": "https://github.com/mozilla/receiptverifier",
"keywords": [
"open",
"web",
"app",
"receipt",
"verification",
"verify"
],
"repository": {
"type": "git",
"url": "git://github.com/mozilla/receiptverifier.git"
},
"main": "./lib/receiptverifier.js",
"licenses": [
{
"type": "MPL 2.0",
"url": "http://www.mozilla.org/MPL/2.0/"
}
],
"dependencies": {
"xmlhttprequest": "1.4.0"
},
"devDependencies": {},
"optionalDependencies": {},
"engines": {
"node": ">=0.4.0"
},
"directories": {
"example": "./example"
}
}

0 comments on commit d66e15a

Please sign in to comment.