font-awesome-animation/package.json
Louis Lin 1d7fbf001b build: change CI
- use NPM scripts instead of Grunt
- use Github actions instead of Travis
- remove dist from versioning
- remove demo
- remove bower
2021-01-21 20:25:02 +01:00

30 lines
845 B
JSON

{
"name": "font-awesome-animation",
"version": "0.3.0",
"dependencies": {},
"author": "l-lin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/l-lin/font-awesome-animation.git"
},
"bugs": {
"url": "https://github.com/l-lin/font-awesome-animation/issues"
},
"homepage": "https://l-lin.github.io/font-awesome-animation",
"devDependencies": {
"cssmin": "~0.4.3",
"myth6": "~1.5.0",
"rimraf": "~3.0.2"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "npm run clean && npm run myth && npm run cssmin",
"clean": "rimraf -f dist",
"cssmin": "cssmin dist/font-awesome-animation.css > dist/font-awesome-animation.min.css",
"myth": "mkdir -p dist && myth src/font-awesome-animation.css dist/font-awesome-animation.css --sourcemap"
}
}