This repository has been archived by the owner on Apr 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.74 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
98
{
"name": "stylelint-custom-processor-loader",
"version": "0.6.0",
"description": "A Webpack loader for stylelint used with custom processors",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/emilgoldsmith/stylelint-custom-processor-loader.git"
},
"scripts": {
"test": "jest",
"lint": "eslint index.js 'test/*'",
"build": "mkdir -p dist && babel index.js -o dist/index.js && echo 'Build successfully completed'",
"real-world-test": "yarn build && webpack --config webpack-test.config.js; rm webpack-test.out.js",
"prettier-fix": "prettier --single-quote --trailing-comma es5 --write",
"precommit": "lint-staged",
"prepush": "yarn run lint && yarn test && yarn build && echo '\nprepush tests passed, pushing now...\n'",
"prepublishOnly": "yarn build"
},
"keywords": [
"lint",
"linter",
"stylelint",
"loader",
"webpack",
"webpack-loader",
"styled-components",
"custom-processor",
"css"
],
"jest": {
"collectCoverageFrom": [
"index.js"
],
"coverageDirectory": "./.coverage"
},
"author": "Emil Goldsmith Olesen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emilgoldsmith/stylelint-custom-processor-loader/issues"
},
"homepage": "https://github.com/emilgoldsmith/stylelint-custom-processor-loader#readme",
"peerDependencies": {
"stylelint": ">= 7.8",
"webpack": ">= 2"
},
"devDependencies": {
"babel-cli": "~6.24.1",
"babel-core": "~6.25.0",
"babel-jest": "~20.0.3",
"babel-plugin-transform-object-rest-spread": "~6.23.0",
"babel-preset-es2015": "~6.24.1",
"bluebird": "~3.5.0",
"css-loader": "~0.28.5",
"eslint": "~4.4.1",
"eslint-config-airbnb-base": "~11.2.0",
"eslint-config-prettier": "~2.3.0",
"eslint-plugin-import": "~2.7.0",
"eslint-plugin-prettier": "~2.1.2",
"husky": "~0.14.3",
"jest": "~21.2.1",
"lint-staged": "~4.0.2",
"prettier": "~1.5.3",
"react": "~16.3.1",
"styled-components": "~3.2.5",
"stylelint": "~9.1.3",
"stylelint-config-standard": "~17.0.0",
"stylelint-processor-styled-components": "~1.3.1",
"webpack": "~3.10.0"
},
"dependencies": {
"loader-utils": "~1.1.0"
},
"greenkeeper": {
"ignore": [
"babel-cli",
"babel-core",
"babel-jest",
"babel-plugin-transform-object-rest-spread",
"bluebird",
"css-loader",
"eslint",
"eslint-config-airbnb-base",
"eslint-config-prettier",
"eslint-plugin-import",
"eslint-plugin-prettier",
"husky",
"jest",
"jest-cli",
"lint-staged",
"prettier",
"stylelint-config-standard"
]
},
"engines": {
"node": ">= 6"
}
}