forked from webpack-contrib/stylelint-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.84 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
{
"name": "stylelint-webpack-plugin",
"version": "0.10.3",
"description": "stylelint plugin for webpack",
"main": "index.js",
"keywords": [
"stylelint",
"lint",
"linter",
"node-sass",
"webpack",
"plugin",
"webpack-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JaKXz/stylelint-webpack-plugin.git"
},
"author": "Javier Sánchez-Marín <[email protected]>",
"maintainers": [
"Jason Kurian <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/JaKXz/stylelint-webpack-plugin/issues"
},
"files": [
"index.js",
"lib"
],
"homepage": "https://github.com/JaKXz/stylelint-webpack-plugin#readme",
"peerDependencies": {
"stylelint": "^8.0.0",
"webpack": "^3 || ^2 || ^2.2.0-rc.0 || ^2.1.0-beta.0 || ^1.13.2"
},
"dependencies": {
"arrify": "^1.0.1",
"micromatch": "^3.1.8",
"object-assign": "^4.1.0",
"ramda": "^0.25.0"
},
"devDependencies": {
"chai": "^4.0.2",
"conventional-github-releaser": "^1.1.3",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"dotenv": "^5.0.0",
"memory-fs": "^0.4.1",
"mocha": "^5.0.0",
"npm-install-version": "^6.0.2",
"npm-run-all": "^4.0.2",
"nyc": "^11.4.1",
"semistandard": "^12.0.0",
"stylelint": "^8.4.0",
"testdouble": "^3.3.1",
"webpack": "^4.0.1"
},
"scripts": {
"pretest": "semistandard",
"test:webpack1": "cross-env WEBPACK_VERSION=1 nyc mocha",
"test:webpack3": "cross-env WEBPACK_VERSION=3 nyc mocha",
"test": "run-s test:*",
"preversion": "npm run test",
"version": "git add -A ."
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
},
"semistandard": {
"envs": [
"node",
"mocha"
],
"globals": [
"getPath",
"expect"
]
}
}