forked from MoOx/postcss-cssnext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.97 KB
/
package.json
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
{
"name": "cssnext",
"version": "1.2.1",
"description": "Use tomorrow's CSS syntax, today",
"keywords": [
"css",
"preprocessor",
"postprocessor",
"rework",
"postcss",
"autoprefixer"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cssnext/cssnext.git"
},
"homepage": "https://cssnext.github.io/",
"bugs": {
"url": "https://github.com/cssnext/cssnext/issues"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"bin",
"index.js"
],
"dependencies": {
"autoprefixer-core": "^5.0.0",
"caniuse-api": "^1.2.1",
"chokidar": "^1.0.0-rc4",
"colors": "^1.0.2",
"commander": "^2.3.0",
"csswring": "^3.0.0",
"exit": "^0.1.2",
"object-assign": "^2.0.0",
"pixrem": "^1.1.0",
"pleeease-filters": "^1.0.0",
"postcss": "^4.0.2",
"postcss-calc": "^4.0.0",
"postcss-color-function": "^1.1.0",
"postcss-color-gray": "^2.0.0",
"postcss-color-hex-alpha": "^1.1.0",
"postcss-color-hwb": "^1.1.0",
"postcss-color-rebeccapurple": "^1.1.0",
"postcss-custom-media": "^1.3.0",
"postcss-custom-properties": "^3.0.0",
"postcss-custom-selectors": "^1.1.0",
"postcss-font-variant": "^1.0.0",
"postcss-import": "^5.0.0",
"postcss-media-minmax": "^1.1.0",
"postcss-pseudoelements": "^2.1.1",
"postcss-url": "^3.0.0",
"read-file-stdin": "^0.2.0",
"to-slug-case": "^0.1.2",
"to-space-case": "^0.1.3",
"write-file-stdout": "0.0.2"
},
"devDependencies": {
"browserify": "^8.1.1",
"jscs": "^1.6.2",
"jshint": "^2.5.6",
"microtime": "^1.2.0",
"tape": "^3.0.0"
},
"scripts": {
"standalone": "browserify --standalone cssnext index.js -o dist/cssnext.js",
"jscs": "jscs .",
"jshint": "jshint . --exclude-path .gitignore",
"pretest": "npm run jscs && npm run jshint && npm run standalone",
"test": "tape test/*.js"
},
"bin": {
"cssnext": "bin/cssnext.js"
}
}