-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.49 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
{
"name": "postcss-ukrainian-stylesheets",
"version": "1.0.0",
"description": "PostCSS plugin for writing Ukrainian Style Sheets",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-ukrainian-stylesheets"
],
"type": "commonjs",
"main": "src/index.js",
"scripts": {
"test": "jest --coverage && eslint .",
"test:quick": "jest --coverage=false",
"commit": "git-cz"
},
"author": "Maksym Portianoi <portimaksym@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/portikM/postcss-ukrainian-stylesheets.git"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"postcss": "^8.3.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.2",
"@commitlint/prompt": "^17.4.2",
"clean-publish": "^3.4.2",
"commitizen": "^4.3.0",
"eslint": "^8.0.1",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1",
"postcss": "^8.3.11"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"dependencies": {},
"release": {
"branches": [
"main"
]
}
}