mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-14 08:11:09 +01:00
824484ed03
* Update the devDependencies * Update the gitignore file * Update the version of gulp * Fix the build error in the gulpfile script * Update node version testing for travis * Update the package.json * Fix some errors * Update the devdependencies * Re arrange the .gitignore * Update devdependency to the latest stable version * Add new line at the end of the file * Fix versioning error * Update DevDependencies * Update the version from 3.6.1 into 3.6.2 * Add delays up to 5 seconds * Update the files from 3.6.1 into 3.6.2 * Modify the documentation and add delay option
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "animate.css",
|
|
"version": "3.6.2",
|
|
"main": "animate.css",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/daneden/animate.css.git"
|
|
},
|
|
"author": {
|
|
"name": "Daniel Eden"
|
|
},
|
|
"homepage": "http://daneden.me/animate",
|
|
"license": "MIT",
|
|
"style": "./animate.css",
|
|
"jspm": {
|
|
"main": "animate.css!",
|
|
"format": "global",
|
|
"directories": {
|
|
"lib": "./"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^8.0.0",
|
|
"cssnano": "^3.10.0",
|
|
"eslint": "^4.18.0",
|
|
"gulp": "^3.9.1",
|
|
"gulp-concat": "^2.6.1",
|
|
"gulp-header": "^2.0.1",
|
|
"gulp-postcss": "^7.0.1",
|
|
"gulp-rename": "^1.2.2",
|
|
"gulp-util": "^3.0.8",
|
|
"husky": "^0.14.3",
|
|
"lint-staged": "^7.0.0",
|
|
"prettier": "^1.10.2",
|
|
"run-sequence": "^2.2.1"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,json,md,css}": ["prettier --write", "git add"]
|
|
},
|
|
"prettier": {
|
|
"bracketSpacing": false,
|
|
"proseWrap": "never",
|
|
"singleQuote": true,
|
|
"trailingComma": "all"
|
|
},
|
|
"scripts": {
|
|
"start": "gulp",
|
|
"prettier": "prettier --write \"**/*.{js,json,md,css}\"",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"spm": {
|
|
"main": "./animate.css"
|
|
}
|
|
}
|