1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-01-17 21:58:27 +01:00
nes.css/package.json

84 lines
2.2 KiB
JSON
Raw Normal View History

2018-09-24 13:35:33 +09:00
{
2018-11-26 17:16:07 +09:00
"name": "nes.css",
2018-11-25 18:11:18 +09:00
"version": "0.0.2",
2018-09-24 13:35:33 +09:00
"description": "NES.css is NES-style CSS Framework.",
"scripts": {
"watch": "npm run build:sass -- --watch",
2018-09-24 13:35:33 +09:00
"build": "npm run build:clean && npm run build:stylelint && npm run build:sass && npm run build:autoprefix && npm run build:cleancss",
"stylelint": "stylelint scss/**/*.scss",
"build:stylelint": "npm run stylelint -- --fix",
"build:clean": "rimraf css",
"build:sass": "node-sass --output-style expanded --source-map true scss/nes.scss css/nes.css",
"build:autoprefix": "postcss --use autoprefixer --map false --output css/nes.css css/nes.css",
"build:cleancss": "cleancss -o css/nes.min.css css/nes.css",
"deploy": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BcRikko/NES.css.git"
},
"keywords": [
"css",
"scss",
"nes",
"framework"
],
"author": "BcRikko (https://github.com/Bcrikko)",
"license": "MIT",
"bugs": {
"url": "https://github.com/BcRikko/NES.css/issues"
},
"homepage": "https://github.com/BcRikko/NES.css#readme",
"devDependencies": {
"autoprefixer": "^9.1.5",
"clean-css-cli": "^4.2.1",
"husky": "^1.0.0",
2018-09-24 13:35:33 +09:00
"lint-staged": "^7.3.0",
"node-sass": "^4.9.3",
"postcss-cli": "^6.0.0",
"prettier": "^1.15.2",
2018-09-24 13:35:33 +09:00
"rimraf": "^2.6.2",
"stylelint": "^9.5.0",
"stylelint-config-prettier": "^4.0.0",
2018-09-24 13:35:33 +09:00
"stylelint-config-recess-order": "^2.0.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-prettier": "^1.0.5",
2018-09-24 13:35:33 +09:00
"stylelint-scss": "^3.3.1"
},
"browserslist": [
"> 1%"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"scss/**/*.scss": [
"npm run build",
"git add ./css",
"git add"
]
},
2018-11-26 09:01:32 +09:00
"prettier": {
"printWidth": 100
},
"stylelint": {
"plugins": [
"stylelint-scss",
"stylelint-prettier"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order",
"stylelint-prettier/recommended"
],
"rules": {
"prettier/prettier": true,
"string-quotes": "double",
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true
}
2018-09-24 13:35:33 +09:00
}
}