From 04cea9b9ed67da2391d3d674ad40ba763eda98f3 Mon Sep 17 00:00:00 2001 From: Joshua Newman <joshua.l.newman@gmail.com> Date: Tue, 19 Jun 2012 16:19:54 -0500 Subject: [PATCH] Adding a package.json. --- package.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 00000000..8c1e5274 --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "CodeMirror", + "version":"2.25.0", + "main": "codemirror.js", + "description": "In-browser code editing made bearable", + "licenses": [ + { + "type": "MIT", + "url": "http://codemirror.net/LICENSE" + } + ], + "directories": { + "lib": "./lib" + }, + "bugs": "http://github.com/marijnh/CodeMirror2/issues", + "keywords": ["JavaScript", "CodeMirror", "Editor"], + "homepage": "http://codemirror.net", + "maintainers":[ { + "name": "Marijn Haverbeke", + "email": "marijnh@gmail.com", + "web": "http://codemirror.net" + }], + "repositories": [ + { + "type": "git", + "url": "https://github.com/marijnh/CodeMirror2.git" + } + ] +} -- GitLab