-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
97 lines (97 loc) · 2.24 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
{
"name": "postcss-sass",
"version": "0.5.0",
"description": "A Sass parser for PostCSS, using gonzales-pe.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-sass",
"sass"
],
"author": "Oleh Aloshkin <[email protected]>",
"license": "MIT",
"repository": "AleshaOleg/postcss-sass",
"bugs": {
"url": "https://github.com/AleshaOleg/postcss-sass/issues"
},
"homepage": "https://github.com/AleshaOleg/postcss-sass",
"dependencies": {
"gonzales-pe": "^4.3.0",
"postcss": "^8.3.7"
},
"devDependencies": {
"@logux/eslint-config": "^39.0.1",
"coveralls": "^3.0.3",
"eslint": "^7.0.0",
"eslint-config-postcss": "^4.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-import-helpers": "^1.0.2",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-prettierx": "^0.12.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^20.0.0",
"greenkeeper-lockfile": "^1.15.1",
"husky": "^4.0.2",
"istanbul": "^0.4.5",
"jest": "^24.9.0",
"lint-staged": "^10.0.3",
"postcss-parser-tests": "^8.3.5"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"prepublishOnly": "yarn run test",
"pretest": "eslint *.js __tests__",
"test": "jest"
},
"engines": {
"node": "^10 || ^12 || >=14"
},
"eslintConfig": {
"extends": "eslint-config-postcss",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"settings": {
"node": {
"tryExtensions": [
".js"
]
}
},
"rules": {
"max-len": [
"error",
120
]
}
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"json"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/utils"
],
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "yarn run test && lint-staged"
}
}
}