You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
992 B
45 lines
992 B
{
|
|
"name": "postcss-initial",
|
|
"version": "3.0.2",
|
|
"description": "PostCSS plugin to fallback initial keyword.",
|
|
"keywords": [
|
|
"postcss",
|
|
"css",
|
|
"postcss-plugin",
|
|
"reset"
|
|
],
|
|
"author": "Maksim Koretskiy <mr.green.tv@gmail.com>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/maximkoretskiy/postcss-initial.git"
|
|
},
|
|
"dependencies": {
|
|
"lodash.template": "^4.5.0",
|
|
"postcss": "^7.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "3.5.0",
|
|
"eslint": "^4.18.2",
|
|
"mocha": "^3.3.0",
|
|
"husky": "^3.0.9",
|
|
"standard-version": "^7.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint *.js ./lib/ ./test/",
|
|
"test": "npm run lint && mocha",
|
|
"tdd": "mocha -w --watch-extensions js,json,css",
|
|
"release": "standard-version"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "yarn test",
|
|
"pre-push": "yarn test"
|
|
}
|
|
},
|
|
"standard-version": {
|
|
"scripts": {
|
|
"prerelease": "yarn test"
|
|
}
|
|
}
|
|
}
|