aboutsummaryrefslogtreecommitdiff
path: root/node_modules/filename-regex/package.json
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-24 15:10:37 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-24 15:11:17 +0200
commit7a3df06eb573d36142bd1a8e03c5ce8752d300b3 (patch)
tree70bfaea8884c374876f607774850a3a51c0cb381 /node_modules/filename-regex/package.json
parentaca1143cb9eed16cf37f04e475e4257418dd18ac (diff)
fix build issues and add typedoc
Diffstat (limited to 'node_modules/filename-regex/package.json')
-rw-r--r--node_modules/filename-regex/package.json49
1 files changed, 29 insertions, 20 deletions
diff --git a/node_modules/filename-regex/package.json b/node_modules/filename-regex/package.json
index a07840085..f79bafb3e 100644
--- a/node_modules/filename-regex/package.json
+++ b/node_modules/filename-regex/package.json
@@ -1,34 +1,26 @@
{
"name": "filename-regex",
"description": "Regular expression for matching file names, with or without extension.",
- "version": "2.0.0",
- "homepage": "https://github.com/regexps/filename-regex",
- "author": {
- "name": "Jon Schlinkert",
- "url": "https://github.com/jonschlinkert"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/regexps/filename-regex.git"
- },
+ "version": "2.0.1",
+ "homepage": "https://github.com/regexhq/filename-regex",
+ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
+ "repository": "regexhq/filename-regex",
"bugs": {
- "url": "https://github.com/regexps/filename-regex/issues"
- },
- "license": {
- "type": "MIT",
- "url": "https://github.com/regexps/filename-regex/blob/master/LICENSE-MIT"
+ "url": "https://github.com/regexhq/filename-regex/issues"
},
+ "license": "MIT",
+ "files": [
+ "index.js"
+ ],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
- "files": ["index.js"],
"scripts": {
- "test": "mocha -R spec"
+ "test": "mocha"
},
"keywords": [
"basename",
- "regular expression",
"file",
"filename",
"filepath",
@@ -36,6 +28,23 @@
"name",
"path",
"regex",
- "regexp"
- ]
+ "regexp",
+ "regular expression"
+ ],
+ "devDependencies": {
+ "gulp-format-md": "^0.1.12"
+ },
+ "verb": {
+ "toc": false,
+ "layout": "default",
+ "tasks": [
+ "readme"
+ ],
+ "plugins": [
+ "gulp-format-md"
+ ],
+ "lint": {
+ "reflinks": true
+ }
+ }
}