-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.11 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
{
"name": "stylelint-processor-styled-components",
"version": "1.5.2",
"description": "A stylelint processor for styled-components",
"main": "lib/index.js",
"scripts": {
"lint:eslint": "eslint .",
"lint:prettier": "prettier --list-different --print-width 100 --tab-width 2 --no-semi --single-quote '{src/**/*.{js,jsx},test/*.{js,jsx}}'",
"prettier": "prettier --write --print-width 100 --tab-width 2 --no-semi --single-quote '{src/**/*.{js,jsx},test/*.{js,jsx}}'",
"precommit": "lint-staged",
"test": "npm run build && jest test/*.test.js",
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"jest": {
"setupTestFrameworkScriptFile": "./test/jest-setup.js"
},
"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",
"babel-cli",
"babel-preset-latest",
"husky",
"jest",
"lint-staged",
"lodash",
"prettier"
]
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"lint-staged": "^4.0.1",
"lodash": "^4.15.0",
"prettier": "^1.4.4",
"stylelint": "^9.1.1",
"typescript": "~2.6.1"
},
"peerDependency": {
"stylelint-config-styled-components": "^0.1.1",
"stylelint": ">= 9"
},
"dependencies": {
"@babel/parser": "^7.0.0",
"@babel/traverse": "^7.0.0",
"postcss": "^7.0.0"
}
}