UNPKG

2.18 kBJSONView Raw
1{
2 "name": "postcss-cssnext",
3 "version": "2.0.1",
4 "description": "Use tomorrow's CSS syntax, today",
5 "keywords": [
6 "css",
7 "w3c",
8 "cssnext",
9 "preprocessor",
10 "postprocessor",
11 "rework",
12 "postcss",
13 "postcss-plugin",
14 "autoprefixer",
15 "babel",
16 "transpiler"
17 ],
18 "author": "Maxime Thirouin",
19 "license": "MIT",
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/cssnext/postcss-cssnext.git"
23 },
24 "homepage": "http://cssnext.io/",
25 "bugs": {
26 "url": "https://github.com/cssnext/postcss-cssnext/issues"
27 },
28 "main": "lib/index.js",
29 "files": [
30 "lib",
31 "src",
32 "!**/__tests__"
33 ],
34 "dependencies": {
35 "autoprefixer": "^6.0.2",
36 "caniuse-api": "^1.3.2",
37 "pixrem": "^2.0.0",
38 "pleeease-filters": "^2.0.0",
39 "postcss": "^5.0.4",
40 "postcss-calc": "^5.0.0",
41 "postcss-color-function": "^2.0.0",
42 "postcss-color-gray": "^3.0.0",
43 "postcss-color-hex-alpha": "^2.0.0",
44 "postcss-color-hwb": "^2.0.0",
45 "postcss-color-rebeccapurple": "^2.0.0",
46 "postcss-color-rgba-fallback": "^2.0.0",
47 "postcss-custom-media": "^5.0.0",
48 "postcss-custom-properties": "^5.0.0",
49 "postcss-custom-selectors": "^3.0.0",
50 "postcss-font-variant": "^2.0.0",
51 "postcss-media-minmax": "^2.1.0",
52 "postcss-pseudo-class-any-link": "^1.0.0",
53 "postcss-pseudoelements": "^3.0.0",
54 "postcss-selector-matches": "^2.0.0",
55 "postcss-selector-not": "^2.0.0"
56 },
57 "devDependencies": {
58 "babel": "^5.8.23",
59 "babel-eslint": "^4.1.1",
60 "babel-tape-runner": "^1.2.0",
61 "eslint": "^1.3.1",
62 "rimraf": "^2.4.3",
63 "tape": "^4.2.0",
64 "to-slug-case": "^0.1.2"
65 },
66 "scripts": {
67 "prebabelify": "rimraf lib",
68 "babelify": "babel src --out-dir lib",
69 "prepublish": "npm run babelify",
70 "#lint": "even if there is a .eslintignore symlink, we use an explicit command because windows don't like unix symlink",
71 "lint": "eslint --ignore-path .gitignore .",
72 "#tape": "to avoid really slow tests, we run babel once & run tests on the result",
73 "tape": "tape 'lib/__tests__/*.js'",
74 "test": "npm run lint && npm run babelify && npm run tape"
75 }
76}