Support npm.

This commit is contained in:
Jonathan Puckey 2011-08-10 21:02:54 +02:00
parent 8ce7ed578e
commit a9eebaed64
2 changed files with 21 additions and 0 deletions

1
index.js Normal file
View file

@ -0,0 +1 @@
module.exports = require('./src/loadNode.js');

20
package.json Normal file
View file

@ -0,0 +1,20 @@
{ "name": "paper"
, "description": "Vector graphics scripting framework"
, "version": "0.2.1"
, "contributors": [
{ "name" : "Jürg Lehni"
, "url" : "http://lehni.org"
},
{ "name" : "Jonathan Puckey"
, "url" : "http://jonathanpuckey.com"
}
]
, "homepage": "http://paperjs.org"
, "keywords": ["canvas", "graphic", "graphics", "vector", "paper.js"]
, "repository": "git://github.com/paperjs/paper.js/"
, "dependencies": {
"canvas": "0.7.0"
}
, "engines": { "node": ">= 0.4.0 && < 0.6.0" }
, "main": "./src/loadCanvas.js"
}