Add package.json

This commit is contained in:
Marijn Haverbeke 2012-09-24 11:50:18 +02:00
parent 820f148002
commit a46f0012ed

19
package.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "acorn",
"description": "ECMAScript parser",
"homepage": "http://marijnhaverbeke.nl/acorn/",
"main": "acorn.js",
"version": "0.0.1",
"engines": {"node": ">=0.4.0"},
"maintainers": [{"name": "Marijn Haverbeke",
"email": "marijnh@gmail.com",
"web": "http://marijnhaverbeke.nl"
}],
"repositories": [{"type": "git",
"url": "http://marijnhaverbeke.nl/git/acorn"},
{"type": "git",
"url": "https://github.com/marijnh/acorn.git"}]
"licenses": [{"type": "MIT",
"url": "http://marijnhaverbeke.nl/acorn/LICENSE"}],
"scripts": {"test": "node test/run.js"}
}