This repository has been archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
87 lines (87 loc) · 2.09 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
{
"name": "stylelint-processor-styled-components",
"version": "1.10.0",
"description": "A stylelint processor for styled-components",
"main": "src/index.js",
"scripts": {
"lint:eslint": "eslint .",
"lint:prettier": "prettier --list-different \"./**/*.js\"",
"prettier": "prettier --write \"./**/*.js\"",
"test": "jest"
},
"jest": {
"testMatch": [
"<rootDir>/test/*.test.js"
],
"setupFilesAfterEnv": [
"./test/jest-setup.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"npm run lint:eslint --fix",
"npm run lint:prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/styled-components/stylelint-processor-styled-components.git"
},
"keywords": [
"stylelint",
"processor",
"stylelint-processor",
"styled-components",
"lint"
],
"author": "Max Stoiber",
"license": "MIT",
"bugs": {
"url": "https://github.com/styled-components/stylelint-processor-styled-components/issues"
},
"homepage": "https://github.com/styled-components/stylelint-processor-styled-components#readme",
"greenkeeper": {
"ignore": [
"eslint",
"eslint-plugin-import",
"eslint-config-airbnb-base",
"husky",
"jest",
"lint-staged",
"lodash",
"prettier"
]
},
"devDependencies": {
"@babel/core": "^7.8.3",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.3",
"lodash": "^4.17.15",
"prettier": "^1.19.1",
"slash": "^3.0.0",
"stylelint": "^13.0.0",
"typescript": "~3.7.5"
},
"peerDependency": {
"stylelint-config-styled-components": "^0.1.1",
"stylelint": ">= 10"
},
"dependencies": {
"@babel/parser": "^7.8.3",
"@babel/traverse": "^7.8.3",
"micromatch": "^4.0.2",
"postcss": "^7.0.26"
}
}