UNPKG

1.8 kBJSONView Raw
1{
2 "name": "stylelint-webpack-plugin",
3 "version": "0.5.1",
4 "description": "stylelint plugin for webpack",
5 "main": "index.js",
6 "keywords": [
7 "stylelint",
8 "lint",
9 "linter",
10 "node-sass",
11 "webpack",
12 "plugin",
13 "webpack-plugin"
14 ],
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/vieron/stylelint-webpack-plugin.git"
18 },
19 "author": "Javier Sánchez-Marín <javiersanchezmarin@gmail.com>",
20 "license": "MIT",
21 "bugs": {
22 "url": "https://github.com/vieron/stylelint-webpack-plugin/issues"
23 },
24 "files": [
25 "index.js",
26 "lib"
27 ],
28 "homepage": "https://github.com/vieron/stylelint-webpack-plugin#readme",
29 "peerDependencies": {
30 "stylelint": "^7.7.0",
31 "webpack": "^2 || ^2.2.0-rc.0 || ^2.1.0-beta.0 || ^1.13.2"
32 },
33 "dependencies": {
34 "arrify": "^1.0.1",
35 "chalk": "^1.1.3",
36 "object-assign": "^4.1.0",
37 "stylelint": "^7.7.0"
38 },
39 "devDependencies": {
40 "chai": "^3.5.0",
41 "chai-as-promised": "^6.0.0",
42 "conventional-github-releaser": "^1.1.3",
43 "coveralls": "^2.11.14",
44 "dotenv": "^4.0.0",
45 "memory-fs": "^0.4.1",
46 "mocha": "^3.1.0",
47 "npm-install-version": "^6.0.1",
48 "nyc": "^10.0.0",
49 "webpack": "^1.13.2",
50 "xo": "^0.16.0"
51 },
52 "scripts": {
53 "pretest": "xo",
54 "test:webpack1": "WEBPACK_VERSION=1 nyc mocha",
55 "test:webpack2": "WEBPACK_VERSION=beta nyc mocha",
56 "test": "npm run test:webpack1 && npm run test:webpack2",
57 "preversion": "npm run test",
58 "version": "git add -A ."
59 },
60 "nyc": {
61 "reporter": [
62 "lcov",
63 "text-summary"
64 ]
65 },
66 "xo": {
67 "space": true,
68 "envs": [
69 "node",
70 "mocha"
71 ],
72 "globals": [
73 "getPath",
74 "expect"
75 ]
76 },
77 "greenkeeper": {
78 "ignore": [
79 "xo"
80 ]
81 }
82}