1
0
mirror of https://github.com/kognise/water.css.git synced 2025-02-16 17:54:37 +01:00

78 lines
2.2 KiB
JSON
Raw Normal View History

2019-04-05 20:29:26 -07:00
{
"name": "water.css",
"version": "2.0.0",
2020-05-30 17:54:22 -05:00
"description": "A drop-in collection of CSS styles to make simple websites just a little nicer",
2019-04-05 20:29:26 -07:00
"main": "index.js",
"scripts": {
"build": "gulp build",
"dev": "gulp watch",
2020-06-10 10:26:43 -05:00
"lint:js": "eslint bookmarklet/original.js docs/script.js docs/index.html gulpfile.js",
"lint:css": "stylelint src/**/*.css docs/style.css",
"lint": "yarn lint:js --fix && yarn lint:css --fix",
2020-05-30 19:42:16 -05:00
"accessibility": "yarn build && node accessibility.js",
"validate": "yarn lint:js && yarn lint:css && yarn accessibility"
2019-04-05 20:29:26 -07:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/kognise/water.css.git"
},
"keywords": [
"css",
"css-framework",
"simple",
"minimal"
],
2019-04-06 08:29:35 -04:00
"author": "Kognise",
2019-04-05 20:29:26 -07:00
"license": "MIT",
"bugs": {
"url": "https://github.com/kognise/water.css/issues"
},
2019-04-06 08:29:35 -04:00
"homepage": "https://github.com/kognise/water.css",
2019-04-07 22:18:31 -04:00
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@changesets/cli": "^2.7.2",
"autoprefixer": "^9.5.1",
2019-04-07 17:47:23 -07:00
"browser-sync": "^2.26.3",
2019-04-19 19:04:21 +09:00
"chalk": "^2.4.2",
"cssnano": "^4.1.10",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-markdown": "^2.0.0-alpha.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-bytediff": "^1.0.0",
"gulp-filter": "^5.1.0",
"gulp-flatten": "^0.4.0",
"gulp-postcss": "^8.0.0",
"gulp-posthtml": "^3.0.4",
"gulp-rename": "^1.4.0",
"gulp-sizereport": "^1.2.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.2.0",
"htmlnano": "^0.2.3",
2020-05-28 23:05:22 -05:00
"husky": "^4.2.5",
2020-05-30 19:42:16 -05:00
"pa11y": "^5.3.0",
"postcss-color-mod-function": "^3.0.3",
"postcss-css-variables": "^0.12.0",
"postcss-import": "^12.0.1",
2020-05-26 20:40:01 -05:00
"postcss-inline-svg": "^4.1.0",
2020-05-30 19:42:16 -05:00
"puppeteer": "^3.2.0",
"stylelint": "^13.5.0",
2020-05-30 12:47:34 -05:00
"stylelint-config-standard": "^20.0.0"
2019-04-07 18:18:27 -07:00
},
"browserslist": [
"defaults"
2020-05-31 01:30:58 +02:00
],
2019-10-01 23:25:20 -07:00
"files": [
2020-05-27 14:47:48 -05:00
"dist/*.css",
"LICENSE.md"
2019-04-19 19:04:21 +09:00
]
}