aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 7704812790f105ea44f14d5c831919a1ae12b2f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
  "name": "water.css",
  "version": "2.1.1",
  "description": "A drop-in collection of CSS styles to make simple websites just a little nicer",
  "main": "out/water.css",
  "scripts": {
    "build": "gulp build",
    "dev": "gulp watch",
    "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",
    "accessibility": "yarn build && node accessibility.js",
    "validate": "yarn lint:js && yarn lint:css && yarn accessibility"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kognise/water.css.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "css",
    "css-framework",
    "simple",
    "minimal"
  ],
  "author": "Kognise",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kognise/water.css/issues"
  },
  "homepage": "https://github.com/kognise/water.css",
  "devDependencies": {
    "@babel/core": "^7.4.5",
    "@babel/preset-env": "^7.4.5",
    "@changesets/cli": "^2.7.2",
    "autoprefixer": "^9.5.1",
    "browser-sync": "^2.26.3",
    "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",
    "husky": "^4.2.5",
    "pa11y": "^5.3.0",
    "postcss-color-mod-function": "^3.0.3",
    "postcss-css-variables": "^0.12.0",
    "postcss-import": "^12.0.1",
    "postcss-inline-svg": "^4.1.0",
    "puppeteer": "^3.2.0",
    "stylelint": "^13.5.0",
    "stylelint-config-standard": "^20.0.0"
  },
  "browserslist": [
    "defaults"
  ],
  "files": [
    "out/*.css",
    "LICENSE.md"
  ]
}