-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "@moxy/postcss-preset",
"description": "PostCSS preset to be used at MOXY",
"version": "5.0.0",
"keywords": [
"postcss",
"preset",
"react",
"moxy",
"transpile"
],
"author": "André Cruz <[email protected]>",
"homepage": "https://github.com/moxystudio/postcss-preset",
"repository": {
"type": "git",
"url": "[email protected]:moxystudio/postcss-preset.git"
},
"license": "MIT",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint .",
"test": "jest",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"dependencies": {
"browserslist-config-google": "^3.0.1",
"postcss-advanced-variables": "^3.0.1",
"postcss-calc": "^7.0.2",
"postcss-import": "^12.0.0",
"postcss-mixins": "^6.2.0",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@moxy/eslint-config-base": "^13.0.3",
"@moxy/eslint-config-jest": "^13.0.3",
"@moxy/jest-config-base": "^6.0.0",
"eslint": "^7.19.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"lodash.compact": "^3.0.1",
"postcss": "^7.0.32",
"standard-version": "^9.1.0"
}
}