forked from cssnano/cssnano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.96 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "cssnano-core",
"private": true,
"scripts": {
"all-contributors": "all-contributors add",
"lint": "eslint . --cache --ignore-path .gitignore",
"fixlint": "yarn lint -- --fix",
"postinstall": "lerna bootstrap",
"build:packages": "babel-node ./util/buildPackages.js",
"build:metadata": "babel-node ./util/buildMetadata.js",
"build:site": "remark site/content/**/*.md -o && yarn build:metadata && babel-node ./util/buildSiteMarkdown.js && cd site && yarn build",
"build:integration": "cross-env BABEL_ENV=test babel-node ./util/buildFrameworks.js",
"pretest": "yarn lint",
"test:only": "cross-env BABEL_ENV=test jest",
"test:coverage": "cross-env BABEL_ENV=test jest --coverage",
"test": "yarn test:coverage",
"deploy": "gh-pages -t -d site/dist",
"publish": "lerna publish"
},
"engines": {
"node": ">=6.9.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"all-contributors-cli": "^5.11.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-module-resolver": "^3.2.0",
"browserslist": "^4.8.5",
"camelcase": "^5.3.1",
"chalk": "^2.4.2",
"cross-env": "^5.1.6",
"css-color-names": "^1.0.1",
"del-cli": "^1.1.0",
"diff": "^4.0.1",
"dox": "^0.9.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"fs-extra": "^8.0.1",
"get-pkg-repo": "^4.1.0",
"gh-pages": "^1.2.0",
"glob": "^7.1.4",
"got": "^8.3.2",
"html2plaintext": "^2.1.2",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"lerna": "3.3.2",
"mdast-util-heading-range": "^2.1.2",
"pleeease-filters": "^4.0.0",
"postcss": "^7.0.16",
"postcss-devtools": "^1.1.1",
"postcss-font-magician": "^2.2.2",
"postcss-scss": "^2.0.0",
"postcss-simple-vars": "^5.0.2",
"postcss-value-parser": "^3.3.1",
"prettier": "^1.17.1",
"remark": "^10.0.1",
"remark-behead": "^2.2.1",
"remark-bookmarks": "^2.1.0",
"remark-cli": "^6.0.1",
"remark-frontmatter": "^1.3.1",
"remark-github": "^7.0.6",
"remark-heading-gap": "^3.1.0",
"remark-html": "^9.0.0",
"remark-license": "^5.0.1",
"remark-toc": "^5.1.1",
"stringify-object": "^3.3.0",
"toml": "^3.0.0",
"tomlify-j0.4": "^3.0.0",
"unist-builder": "^1.0.4",
"unist-util-remove": "^1.0.2",
"write-file": "^1.0.0"
},
"browserslist": {
"chrome58": [
"Chrome 58"
],
"edge15": [
"Edge 15"
],
"ie6": [
"IE 6"
],
"ie7": [
"IE 7"
],
"ie8": [
"IE 8"
],
"ie9": [
"IE 9"
],
"not ie": [
"defaults",
"not ie <=11"
],
"opera9": [
"Opera 9"
],
"firefox2": [
"Firefox 2"
],
"safari5": [
"Safari < 5"
]
}
}