UNPKG

1.9 kBJSONView Raw
1{
2 "name": "postcss-normalize",
3 "version": "8.0.1",
4 "description": "Use the parts of normalize.css or sanitize.css you need from your browserslist",
5 "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6 "license": "CC0-1.0",
7 "repository": "csstools/postcss-normalize",
8 "homepage": "https://github.com/csstools/postcss-normalize#readme",
9 "bugs": "https://github.com/csstools/postcss-normalize/issues",
10 "main": "index.cjs.js",
11 "module": "index.esm.mjs",
12 "files": [
13 "index.cjs.js",
14 "index.cjs.js.map",
15 "index.esm.mjs",
16 "index.esm.mjs.map"
17 ],
18 "scripts": {
19 "build": "rollup --config .rollup.js --silent",
20 "prepublishOnly": "npm test",
21 "pretest:tape": "npm run build",
22 "test": "npm run test:js && npm run test:tape",
23 "test:js": "eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet",
24 "test:tape": "postcss-tape"
25 },
26 "engines": {
27 "node": ">=8.0.0"
28 },
29 "dependencies": {
30 "@csstools/normalize.css": "^10.1.0",
31 "browserslist": "^4.6.2",
32 "postcss": "^7.0.17",
33 "postcss-browser-comments": "^3.0.0",
34 "sanitize.css": "^10.0.0"
35 },
36 "devDependencies": {
37 "@babel/core": "^7.4.5",
38 "@babel/plugin-syntax-import-meta": "^7.2.0",
39 "@babel/preset-env": "^7.4.5",
40 "babel-eslint": "^10.0.1",
41 "eslint": "^5.16.0",
42 "postcss-import": "^12.0.1",
43 "postcss-tape": "^5.0.0",
44 "pre-commit": "^1.2.2",
45 "rollup": "^1.14.6",
46 "rollup-plugin-babel": "^4.3.2"
47 },
48 "eslintConfig": {
49 "env": {
50 "browser": true,
51 "es6": true,
52 "node": true
53 },
54 "extends": "eslint:recommended",
55 "parser": "babel-eslint",
56 "parserOptions": {
57 "ecmaVersion": 2018,
58 "impliedStrict": true,
59 "sourceType": "module"
60 },
61 "root": true
62 },
63 "keywords": [
64 "postcss",
65 "css",
66 "postcss-plugin",
67 "normalizes",
68 "browsers",
69 "fixes"
70 ]
71}