diff options
Diffstat (limited to 'tools/eslint/node_modules/vfile/package.json')
-rw-r--r-- | tools/eslint/node_modules/vfile/package.json | 46 |
1 files changed, 12 insertions, 34 deletions
diff --git a/tools/eslint/node_modules/vfile/package.json b/tools/eslint/node_modules/vfile/package.json index 683037519b..64820cb423 100644 --- a/tools/eslint/node_modules/vfile/package.json +++ b/tools/eslint/node_modules/vfile/package.json @@ -28,7 +28,7 @@ "url": "http://wooorm.com" }, "bugs": { - "url": "https://github.com/vfile/vfile/issues" + "url": "https://github.com/wooorm/vfile/issues" }, "bundleDependencies": false, "contributors": [ @@ -36,29 +36,14 @@ "name": "Titus Wormer", "email": "tituswormer@gmail.com", "url": "http://wooorm.com" - }, - { - "name": "Denys Dovhan", - "email": "email@denysdovhan.com" - }, - { - "name": "Kyle Mathews", - "email": "mathews.kyle@gmail.com" - }, - { - "name": "Shinnosuke Watanabe", - "email": "snnskwtnb@gmail.com" - }, - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com" } ], "dependencies": {}, "deprecated": false, "description": "Virtual file format for text processing", "devDependencies": { - "browserify": "^14.0.0", + "browserify": "^13.0.0", + "eslint": "^2.0.0", "esmangle": "^1.0.0", "istanbul": "^0.4.0", "jscs": "^3.0.0", @@ -91,27 +76,20 @@ "name": "vfile", "repository": { "type": "git", - "url": "git+https://github.com/vfile/vfile.git" + "url": "git+https://github.com/wooorm/vfile.git" }, "scripts": { "build": "npm run build-md && npm run build-bundle && npm run build-mangle", "build-bundle": "browserify index.js -s VFile > vfile.js", "build-mangle": "esmangle vfile.js > vfile.min.js", - "build-md": "remark . -qfo", - "lint": "xo", + "build-md": "remark . --quiet --frail", + "lint": "npm run lint-api && npm run lint-style", + "lint-api": "eslint .", + "lint-style": "jscs --reporter inline .", "test": "npm run build && npm run lint && npm run test-coverage", - "test-api": "node test", - "test-coverage": "nyc --reporter lcov tape test.js" + "test-api": "node test.js", + "test-coverage": "istanbul cover test.js", + "test-travis": "npm run test-coverage" }, - "version": "2.1.0", - "xo": { - "space": true, - "esnext": false, - "rules": { - "unicorn/no-new-buffer": "off" - }, - "ignores": [ - "vfile.js" - ] - } + "version": "1.4.0" } |