{
	"name": "@lume/autolayout",
	"version": "0.10.2",
	"homepage": "https://github.com/lume/autolayout",
	"repository": {
		"type": "git",
		"url": "git://github.com/lume/autolayout.git"
	},
	"type": "module",
	"main": "dist/AutoLayout.js",
	"types": "dist/AutoLayout.d.ts",
	"description": "Apple's Auto Layout and Visual Format Language for javascript (using cassowary constraints)",
	"keywords": [
		"autolayout",
		"autolayoutjs",
		"autolayout.js",
		"auto-layout",
		"cassowary",
		"cassowaryjs",
		"cassowary.js",
		"vfl",
		"evfl",
		"visualformatlanguage"
	],
	"license": "MIT",
	"readmeFilename": "README.md",
	"bugs": {
		"url": "https://github.com/lume/autolayout/issues"
	},
	"engines": {
		"node": ">= 0.10.0"
	},
	"files": [
		"src",
		"dist",
		"LICENSE"
	],
	"devDependencies": {
		"babel-eslint": "^7.1.1",
		"babel-preset-es2015": "^6.18.0",
		"babelify": "^7.3.0",
		"benchmark": "^2.1.3",
		"browserify": "^13.3.0",
		"chai": "^3.5.0",
		"combined-stream": "^1.0.5",
		"envify": "^4.0.0",
		"esperanto": "^0.7.5",
		"grunt": "~0.4.1",
		"grunt-cli": "^0.1.0",
		"grunt-contrib-concat": "^1.0.1",
		"grunt-jsdoc-to-markdown": "^2.0.0",
		"grunt-peg": "1.5.0",
		"istanbul": "^0.4.5",
		"lodash": "^4.17.4",
		"minifyify": "^7.3.4",
		"minimist": "^1.2.0",
		"mocha": "^9.0.0",
		"platform": "^1.3.1",
		"prettier": "3.0.3",
		"rimraf": "^3.0.2",
		"typescript": "^5.0.0"
	},
	"dependencies": {
		"@lume/kiwi": "^0.4.0"
	},
	"scripts": {
		"build": "tsc",
		"clean": "rimraf dist/ tmp/",
		"build:parser": "rimraf 'src/parser/*.js' && npm run grunt -- parser",
		"test": "npm run lint && mocha",
		"cov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -R",
		"bench": "node bench/main.js",
		"format": "npm run prettier",
		"prettier": "prettier . --write",
		"lint": "prettier . --check",
		"doc": "npm run grunt -- doc && node scripts/docs-update-headings.js && prettier docs/AutoLayout.md --write",
		"grunt": "grunt --gruntfile Gruntfile.cjs",
		"version": "npm run clean && npm run build && npm test && npm run bench && git add .",
		"release:patch": "npm version --no-workspaces patch --message 'v%s' && npm publish && git push --follow-tags",
		"release:minor": "npm version --no-workspaces minor --message 'v%s' && npm publish && git push --follow-tags",
		"release:major": "npm version --no-workspaces major --message 'v%s' && npm publish && git push --follow-tags"
	}
}
