This commit is contained in:
Brian J Brennan 2014-11-13 10:37:01 -05:00
Родитель 3b6bcc55c2
Коммит c0ede5d6d6
2 изменённых файлов: 32 добавлений и 0 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -1 +1,2 @@
docs
/node_modules/

31
package.json Normal file
Просмотреть файл

@ -0,0 +1,31 @@
{
"name": "slowparse",
"version": "1.0.0",
"description": "Slowparse is a token stream parser for HTML and CSS text, recording regions of interest during the parse run and signaling any errors detected accompanied by relevant regions in the text stream, to make debugging easy.",
"main": "slowparse.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/slowparse.git"
},
"keywords": [
"slowparse",
"html",
"css",
"parser"
],
"author": "Mozilla Foundation",
"license": "MPL 2.0",
"bugs": {
"url": "https://github.com/mozilla/slowparse/issues"
},
"homepage": "https://github.com/mozilla/slowparse",
"devDependencies": {
"jsdom": "^1.2.1"
}
}