-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "@dczajkowski/stylelint-rules",
"version": "0.0.8",
"description": "A set of opinionated rules for stylelint.",
"main": "src/index.js",
"scripts": {
"clean": "echo \"if [[ RUNNING_IN_CI -ne 1 ]]; then find src tests -name '*.js' | xargs rm; fi\" | bash",
"prepublishOnly": "yarn test && yarn lint",
"build": "yarn clean && tsc",
"test": "yarn build && tape 'tests/**/*.js' | tap-spec",
"prettify": "prettier src/**/*.ts tests/**/*.ts --write",
"lint": "prettier src/**/*.ts tests/**/*.ts --check"
},
"author": "Dariusz Czajkowski",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DCzajkowski/stylelint-rules.git"
},
"dependencies": {
"postcss": "^7.0.17",
"postcss-load-config": "^2.1.0",
"postcss-value-parser": "^4.0.0"
},
"peerDependencies": {
"stylelint": "^10.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/stylelint": "^9.10.0",
"@types/tape": "^4.2.33",
"jest": "^24.8.0",
"postcss-cssnext": "^3.1.0",
"prettier": "^1.18.2",
"stylelint": "^10.1.0",
"stylelint-test-rule-tape": "^0.2.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"files": [
"README.md",
"LICENSE",
"src/**/*.js"
]
}