forked from cssnano/cssnano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.8 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
{
"name": "cssnano-core",
"private": true,
"scripts": {
"all-contributors": "all-contributors add",
"lint": "eslint . --cache --ignore-path .gitignore",
"fixlint": "yarn lint -- --fix",
"prepare": "lerna run --stream prepare",
"build:metadata": "babel-node ./util/buildMetadata.js",
"build:docs": "remark site/docs/**/*.md -o && yarn build:metadata && babel-node ./util/buildSiteMarkdown.js",
"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": "cd site && GIT_USER=anikethsaha yarn deploy",
"publish": "lerna publish"
},
"workspaces": [
"./packages/*"
],
"engines": {
"node": "^10 || ^12 || >=14"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^27.0.1",
"babel-plugin-add-module-exports": "^1.0.2",
"browserslist": "^4.16.0",
"camelcase": "^6.2.0",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"css-color-names": "^1.0.1",
"diff": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"fs-extra": "^9.1.0",
"glob": "^7.1.4",
"html-to-text": "^8.0.0",
"jest": "^27.0.1",
"jest-junit": "^12.1.0",
"lerna": "4.0.0",
"mdast-util-heading-range": "^2.1.2",
"node-fetch": "^2.6.1",
"pleeease-filters": "^4.0.0",
"postcss": "^8.3.0",
"postcss-devtools": "^1.1.1",
"postcss-font-magician": "^3.0.0",
"postcss-scss": "^3.0.4",
"postcss-simple-vars": "^6.0.1",
"postcss-value-parser": "^4.1.0",
"prettier": "^2.3.2",
"remark": "^13.0.0",
"remark-behead": "^2.2.1",
"remark-bookmarks": "^3.0.0",
"remark-cli": "^9.0.0",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-github": "^10.1.0",
"remark-heading-gap": "^4.0.0",
"remark-html": "^13.0.1",
"rimraf": "^3.0.2",
"toml": "^3.0.0",
"tomlify-j0.4": "^3.0.0",
"unist-builder": "^2.0.3",
"unist-util-remove": "^2.1.0"
},
"browserslist": {
"chrome58": [
"Chrome 58"
],
"chrome62": [
"Chrome 62"
],
"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"
]
}
}