forked from zgreen/postcss-critical-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"name": "postcss-critical-css",
"version": "3.0.1",
"description": "Generate critical CSS using PostCSS",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/zgreen/postcss-critical-css"
},
"keywords": [
"postcss-plugin",
"postcss plugin",
"postcss",
"critical-css",
"critical",
"css",
"critical css"
],
"author": "Zach Green",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.13.2",
"babel-runtime": "^6.26.0",
"eslint": "^3.3.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^4.2.3",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.48.0",
"jest": "^23.1.0",
"minimist": "^1.2.0",
"tape": "^4.8.0"
},
"scripts": {
"build": "eslint src/** && npm run flow && babel src --out-dir lib",
"example": "./node_modules/.bin/babel-node example/example.js",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"eslint": "eslint test/**/*.js && eslint src/**",
"start": "eslint src/** && npm run flow && babel src --out-dir lib --watch",
"pretest": "node test/preTest.js",
"test": "jest --verbose"
},
"dependencies": {
"bottleneck": "^2.4.0",
"chalk": "^1.1.3",
"cssnano": "^3.7.4",
"fs-extra": "^6.0.1",
"postcss": "^6.0.16"
}
}