ember-cli-clean-css
Version:
ember-cli addon to run clean-css on css files during build
102 lines (101 loc) • 2.81 kB
JSON
{
"name": "ember-cli-clean-css",
"version": "3.0.0",
"description": "ember-cli addon to run clean-css on css files during build",
"keywords": [
"ember-addon"
],
"homepage": "https://github.com/ember-cli/ember-cli-clean-css#readme",
"bugs": {
"url": "https://github.com/ember-cli/ember-cli-clean-css/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/ember-cli-clean-css.git"
},
"license": "MIT",
"author": "Robert Jackson <me@rwjblue.com>",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"start": "ember server",
"test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
"test:node": "mocha node-tests/**/*-test.js"
},
"dependencies": {
"broccoli-persistent-filter": "^3.1.3",
"clean-css": "^5.3.2",
"json-stable-stringify": "^1.0.1"
},
"devDependencies": {
"@ember/optional-features": "^2.0.0",
"@ember/string": "^3.0.1",
"@ember/test-helpers": "^2.8.1",
"@embroider/test-setup": "^2.1.1",
"@release-it-plugins/lerna-changelog": "^5.0.0",
"babel-eslint": "^10.1.0",
"concurrently": "^8.0.1",
"ember-auto-import": "^2.6.1",
"ember-cli": "~4.8.0",
"ember-cli-babel": "^7.26.11",
"ember-cli-dependency-checker": "^3.3.1",
"ember-cli-htmlbars": "^6.1.1",
"ember-cli-inject-live-reload": "^2.1.0",
"ember-cli-terser": "^4.0.2",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-load-initializers": "^2.1.2",
"ember-qunit": "^6.0.0",
"ember-resolver": "^10.0.0",
"ember-source": "~4.8.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-qunit": "^7.3.1",
"execa": "^3.4.0",
"loader.js": "^4.7.0",
"mocha": "^6.2.2",
"prettier": "^2.8.7",
"qunit": "^2.19.2",
"qunit-dom": "^2.0.0",
"release-it": "^15.5.0",
"webpack": "^5.77.0"
},
"engines": {
"node": "16.* || >= 18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": false
}
}
}