-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "stylelint-value-no-exposed-custom-properties",
"version": "2.3.1",
"description": "A stylelint rule to disallow usage of exposed custom properties",
"homepage": "https://github.com/denisraslov/stylelint-value-no-exposed-custom-properties#readme",
"bugs": "https://github.com/denisraslov/stylelint-value-no-exposed-custom-properties/issues",
"main": "index.cjs.js",
"module": "index.es.mjs",
"files": [
"index.cjs.js",
"index.cjs.js.map",
"index.es.mjs",
"index.es.mjs.map"
],
"scripts": {
"build": "rollup -c .rollup.js --silent",
"test": "node test"
},
"engines": {
"node": ">=6.0.0"
},
"author": "Denis Raslov <denis.raslov@yandex.ru>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.3",
"stylelint": "^9.5.0",
"stylelint-test-rule-tape": "^0.2.0",
"tap-spec": "^5.0.0"
},
"peerDependencies": {
"stylelint": "^9.5.0"
},
"keywords": [
"stylelint",
"stylelint-plugin",
"stylelint-rule",
"css",
"linter",
"css-variables",
"custom-properties",
"css-custom-properties"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged & npm test"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
}
}