-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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
{
"name": "postcss-sorting",
"version": "9.1.0",
"description": "PostCSS plugin to keep rules and at-rules content in order.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"sorting",
"order"
],
"author": "Aleks Hudochenkov <aleks@hudochenkov.com>",
"license": "MIT",
"repository": "hudochenkov/postcss-sorting",
"bugs": {
"url": "https://github.com/hudochenkov/postcss-sorting/issues"
},
"homepage": "https://github.com/hudochenkov/postcss-sorting",
"files": [
"lib",
"!lib/**/__tests__",
"index.js",
"!.DS_Store"
],
"peerDependencies": {
"postcss": "^8.4.20"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-hudochenkov": "^9.0.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-html": "^1.7.0",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^3.3.3",
"prettier-config-hudochenkov": "^0.4.0"
},
"scripts": {
"test-full": "npm run lint && jest",
"test": "jest",
"watch": "jest --watch",
"coverage": "jest --coverage",
"fix": "eslint *.js 'lib/**/*.js' --max-warnings 0 --fix && prettier --write *.js 'lib/**/*.js'",
"lint": "eslint *.js 'lib/**/*.js' --max-warnings 0 && prettier --check *.js 'lib/**/*.js'",
"prepare": "husky"
},
"lint-staged": {
"*.js": [
"eslint --fix --max-warnings=0",
"prettier --write"
]
},
"jest": {
"setupFiles": [
"./jest-setup.js"
],
"testEnvironment": "node",
"testRegex": "__tests__/[a-zA-Z-.]+\\.js$",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"prettier": "prettier-config-hudochenkov"
}