psd2bmf
Version:
Convert the psd to bmfont.
73 lines (72 loc) • 1.89 kB
JSON
{
"name": "psd2bmf",
"version": "1.1.9",
"description": "Convert the psd to bmfont.",
"license": "MIT",
"author": "Porky Ke",
"homepage": "https://github.com/porky-prince/psd2bmf#readme",
"repository": "https://github.com/porky-prince/psd2bmf",
"bugs": "https://github.com/porky-prince/psd2bmf/issues",
"main": "dist/main.js",
"bin": {
"psd2bmf": "bin/psd2bmf.js"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=8.6.0"
},
"scripts": {
"start": "npm run build -- -w -s inline",
"clean": "del-cli dist",
"prebuild": "npm run clean",
"commitlint": "commitlint --from=master",
"lint:prettier": "prettier \"{**/*,*}.{js,json,md}\" -l",
"lint:js": "eslint --cache .",
"lint": "npm-run-all -l -p \"lint:**\"",
"pretest": "npm run lint && del-cli test/output",
"test": "jest",
"test:coverage": "npm run test -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
"hash": "node --require=@babel/register test/helper.js --hash",
"build": "babel src -d dist --copy-files",
"prepare": "npm run build",
"release": "standard-version"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-jest": "^25.2.3",
"del": "^5.1.0",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-xo": "^0.29.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.2.3",
"lint-staged": "^10.0.9",
"npm-run-all": "^4.1.5",
"prettier": "2.0.2",
"standard-version": "^7.1.0"
},
"dependencies": {
"@porky-prince/psd": "^3.2.3",
"fs-extra": "^9.0.0",
"layout": "^2.2.0",
"yargs": "^15.3.1"
},
"keywords": [
"psd",
"bmf",
"bmfont",
"fnt",
"sprite"
]
}