UNPKG

1.63 kBJSONView Raw
1{
2 "name": "stylelint-order",
3 "version": "2.0.0",
4 "description": "A collection of order related linting rules for stylelint.",
5 "keywords": [
6 "stylelint-plugin",
7 "stylelint",
8 "css",
9 "lint",
10 "order"
11 ],
12 "author": "Aleks Hudochenkov <aleks@hudochenkov.com>",
13 "license": "MIT",
14 "repository": "hudochenkov/stylelint-order",
15 "bugs": {
16 "url": "https://github.com/hudochenkov/stylelint-order/issues"
17 },
18 "homepage": "https://github.com/hudochenkov/stylelint-order",
19 "engines": {
20 "node": ">=6"
21 },
22 "files": [
23 "rules",
24 "utils",
25 "!**/tests",
26 "index.js",
27 "!.DS_Store"
28 ],
29 "main": "index.js",
30 "dependencies": {
31 "lodash": "^4.17.10",
32 "postcss": "^7.0.2",
33 "postcss-sorting": "^4.0.1"
34 },
35 "peerDependencies": {
36 "stylelint": "^9.8.0"
37 },
38 "devDependencies": {
39 "eslint": "~5.9.0",
40 "eslint-config-hudochenkov": "~3.0.0",
41 "eslint-config-prettier": "~3.3.0",
42 "husky": "^1.1.3",
43 "jest": "^23.4.2",
44 "lint-staged": "^8.0.4",
45 "prettier": "~1.15.2",
46 "stylelint": "^9.8.0"
47 },
48 "scripts": {
49 "pretest": "eslint .",
50 "test": "jest",
51 "jest": "jest",
52 "watch": "jest --watch",
53 "coverage": "jest --coverage",
54 "fix": "eslint . --fix && prettier '**/*.js' --write"
55 },
56 "lint-staged": {
57 "*.js": [
58 "eslint --fix",
59 "prettier --write",
60 "git add"
61 ]
62 },
63 "jest": {
64 "setupFiles": [
65 "./jest-setup.js"
66 ],
67 "testEnvironment": "node",
68 "testRegex": ".*\\.test\\.js$|rules/.*/tests/.*\\.js$"
69 },
70 "husky": {
71 "hooks": {
72 "pre-commit": "lint-staged"
73 }
74 }
75}