Skip to content

Commit 5c9c3b9

Browse files
committed
create a package.json for memo-parser, in preparation for possible independent publishing.
also explicitly notes Node 4+ requirement
1 parent 4731999 commit 5c9c3b9

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

memo-parser/package.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "memo-parser",
3+
"version": "0.1.0",
4+
"engines": { "node": ">=4" },
5+
"description": "Memoizing wrapper for any ESLint-compatible parser module.",
6+
"main": "index.js",
7+
"scripts": {
8+
"test": "echo \"Error: no test specified\" && exit 1"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/benmosher/eslint-plugin-import.git"
13+
},
14+
"keywords": [
15+
"eslint",
16+
"eslint-plugin-import",
17+
"parser"
18+
],
19+
"author": "Ben Mosher ([email protected])",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/benmosher/eslint-plugin-import/issues"
23+
},
24+
"homepage": "https://github.com/benmosher/eslint-plugin-import#readme"
25+
}

0 commit comments

Comments
 (0)