Import Upstream version 1.1.1
parents
No related branches found
No related tags found
Showing
- .editorconfig 12 additions, 0 deletions.editorconfig
- .gitattributes 1 addition, 0 deletions.gitattributes
- .gitignore 2 additions, 0 deletions.gitignore
- .jscsrc 5 additions, 0 deletions.jscsrc
- .jshintrc 15 additions, 0 deletions.jshintrc
- .travis.yml 6 additions, 0 deletions.travis.yml
- README.md 34 additions, 0 deletionsREADME.md
- index.js 2 additions, 0 deletionsindex.js
- package.json 43 additions, 0 deletionspackage.json
- test.js 19 additions, 0 deletionstest.js
.editorconfig
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.jscsrc
0 → 100644
.jshintrc
0 → 100644
.travis.yml
0 → 100644
README.md
0 → 100644
index.js
0 → 100644
package.json
0 → 100644
{ | ||
"name": "html-comment-regex", | ||
"version": "1.1.1", | ||
"description": "Regular expression for matching HTML comments", | ||
"homepage": "https://github.com/stevemao/html-comment-regex", | ||
"author": { | ||
"name": "Steve Mao", | ||
"email": "maochenyan@gmail.com", | ||
"url": "https://github.com/stevemao" | ||
}, | ||
"repository": "stevemao/html-comment-regex", | ||
"license": "MIT", | ||
"files": [ | ||
"index.js" | ||
], | ||
"keywords": [ | ||
"html-comment-regex", | ||
"text", | ||
"string", | ||
"regex", | ||
"regexp", | ||
"re", | ||
"match", | ||
"test", | ||
"find", | ||
"pattern", | ||
"comment", | ||
"comments", | ||
"html", | ||
"HTML", | ||
"HyperText Markup Language" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"jscs": "^1.11.3", | ||
"jshint": "^2.6.3", | ||
"mocha": "*" | ||
}, | ||
"scripts": { | ||
"lint": "jshint *.js --exclude node_modules && jscs *.js", | ||
"test": "npm run-script lint && mocha" | ||
} | ||
} |
test.js
0 → 100644
Please register or sign in to comment