-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(package): update scripts and devDep
- Loading branch information
Ivan Demidov
committed
Nov 16, 2016
1 parent
9636d7c
commit 2776ff0
Showing
1 changed file
with
88 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,50 @@ | |
"name": "post-load-plugins", | ||
"version": "0.0.0", | ||
"description": "Automatically loads plug-ins with configuration", | ||
"license": "MIT", | ||
"repository": "post-org/post-config", | ||
"homepage": "post-org/post-config#readme", | ||
"bugs": "post-org/post-config/issues", | ||
"author": { | ||
"name": "Ivan Demidov", | ||
"email": "[email protected]", | ||
"url": "https://twitter.com/Scrum_" | ||
}, | ||
"main": "lib/index.js", | ||
"engines": { | ||
"node": ">=4" | ||
}, | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"pretest": "clinton", | ||
"test": "xo src/**/*.js test/**/*.js && nyc ava", | ||
"commitmsg": "conventional-changelog-lint -e", | ||
"postpublish": "conventional-changelog -i changelog.md -s -r 0 && git commit -am \"chore(changelog): Update changelog\"", | ||
"patch": "np patch --any-branch", | ||
"minor": "np minor --any-branch", | ||
"major": "np major --any-branch", | ||
"clean": "rm -rf lib && mkdir lib", | ||
"build": "npm run clean && babel src/ -d lib/", | ||
"prepublish": "npm run build", | ||
"update": "updtr && ava-codemods --force" | ||
"lintjs": "eslint ./src/*.js ./test/*.js", | ||
"lintmd": "eslint --ext md --rule indent: [error, 4] .", | ||
"pretest": "clinton && npm run lintjs && npm run lintmd", | ||
"test": "nyc ava", | ||
"update": "updtr" | ||
}, | ||
"files": [ | ||
"lib/" | ||
], | ||
"keywords": [ | ||
"post", | ||
"HTML", | ||
"CSS", | ||
"PostHTML", | ||
"PostCSS", | ||
"Package", | ||
"Plugins", | ||
"Config", | ||
"Sequence", | ||
"Namespace", | ||
"Autoload" | ||
], | ||
"dependencies": { | ||
"chalk": "^1.1.3", | ||
"indent-string": "^3.0.0", | ||
|
@@ -27,17 +56,29 @@ | |
}, | ||
"devDependencies": { | ||
"ava": "*", | ||
"ava-codemods": "^0.2.1", | ||
"babel-cli": "^6.10.1", | ||
"ava-codemods": "^0.3.0", | ||
"babel-cli": "^6.11.4", | ||
"babel-eslint": "^7.0.0", | ||
"babel-plugin-add-module-exports": "^0.2.0", | ||
"babel-plugin-array-includes": "^2.0.3", | ||
"babel-preset-es2015": "^6.9.0", | ||
"babel-preset-min": "^0.1.15", | ||
"babel-register": "^6.7.2", | ||
"clinton": "^0.5.0", | ||
"coveralls": "^2.11.9", | ||
"del": "^2.2.1", | ||
"nyc": "^6.6.1", | ||
"babel-preset-babili": "0.0.5", | ||
"babel-preset-es2015": "^6.14.0", | ||
"babel-register": "^6.16.0", | ||
"clinton": "^0.8.0", | ||
"conventional-changelog-cli": "^1.2.0", | ||
"conventional-changelog-lint": "^1.0.0", | ||
"coveralls": "^2.11.14", | ||
"eslint": "^3.8.0", | ||
"eslint-config-xo": "^0.17.0", | ||
"eslint-formatter-pretty": "^1.1.0", | ||
"eslint-plugin-ava": "^3.1.1", | ||
"eslint-plugin-babel": "^3.3.0", | ||
"eslint-plugin-markdown": "^1.0.0-beta.2", | ||
"eslint-plugin-require-path-exists": "^1.1.5", | ||
"eslint-plugin-xo": "^1.0.0", | ||
"husky": "^0.11.9", | ||
"np": "^2.8.0", | ||
"nyc": "^8.3.0", | ||
"updtr": "^0.2.1", | ||
"postcss-cli": "^2.5.2", | ||
"posthtml": "^0.9.0", | ||
"posthtml-bem": "^0.2.2", | ||
|
@@ -46,33 +87,51 @@ | |
"posthtml-include": "^1.1.0", | ||
"posthtml-modules": "^0.4.0", | ||
"posthtml-standard-config": "0.0.5", | ||
"posthtml-style-to-file": "^0.1.1", | ||
"read-pkg": "^1.1.0", | ||
"temp-write": "^2.1.0", | ||
"updtr": "^0.2.1", | ||
"xo": "*" | ||
"posthtml-style-to-file": "^0.1.1" | ||
}, | ||
"ava": { | ||
"require": [ | ||
"babel-register" | ||
] | ||
}, | ||
"babel": { | ||
"presets": [ | ||
"es2015" | ||
"es2015", | ||
"babili" | ||
], | ||
"plugins": [ | ||
"array-includes", | ||
"add-module-exports" | ||
], | ||
"comments": false, | ||
"compact": true, | ||
"minified": true | ||
] | ||
}, | ||
"ava": { | ||
"require": [ | ||
"babel-register" | ||
"eslintConfig": { | ||
"format": "node_modules/eslint-formatter-pretty", | ||
"parser": "babel-eslint", | ||
"plugins": [ | ||
"ava", | ||
"xo", | ||
"babel", | ||
"require-path-exists", | ||
"markdown" | ||
], | ||
"extends": [ | ||
"xo", | ||
"plugin:xo/recommended", | ||
"plugin:ava/recommended" | ||
] | ||
}, | ||
"clinton": { | ||
"ignores": [ | ||
"test/**", | ||
"tmp/**", | ||
"lib/**", | ||
"*.{html,jpg}" | ||
], | ||
"rules": { | ||
"pkg-main": [ | ||
"off" | ||
], | ||
"xo": [ | ||
"off" | ||
] | ||
} | ||
}, | ||
|
@@ -85,25 +144,5 @@ | |
"styleToFile": { | ||
"path": "./dist/styleToFile.css" | ||
} | ||
}, | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/posthtml/posthtml-load-plugins.git" | ||
}, | ||
"homepage": "https://github.com/posthtml/posthtml-load-plugins#readme", | ||
"bugs": { | ||
"url": "https://github.com/posthtml/posthtml-load-plugins/issues" | ||
}, | ||
"author": { | ||
"name": "Michael Ciniawky", | ||
"email": "[email protected]" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Ivan Demidov", | ||
"email": "[email protected]", | ||
"url": "https://twitter.com/Scrum_" | ||
} | ||
] | ||
} | ||
} |