-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.58 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.58 KB
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
{
"name": "postcss-warn-cleaner",
"version": "0.1.9",
"description": "Selectively remove postcss warnings from logs.",
"main": "dist/postcss-warn-cleaner.js",
"files": [
"dist",
"LICENSE.md"
],
"scripts": {
"build": "babel lib -d dist",
"lint": "standard lib/**/*.js test/**/*.js",
"release": "yarn run build && npm publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dcalhoun/postcss-warn-cleaner.git"
},
"keywords": [
"postcss",
"warnings",
"log",
"ignore",
"remove",
"clean"
],
"author": {
"name": "David Calhoun",
"url": "http://davidcalhoun.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dcalhoun/postcss-warn-cleaner/issues"
},
"homepage": "https://github.com/dcalhoun/postcss-warn-cleaner#readme",
"dependencies": {
"multimatch": "^2.1.0",
"postcss": "^6.0.0"
},
"devDependencies": {
"autoprefixer": "^9.4.8",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"jest": "^22.0.1",
"postcss-import": "^11.0.0",
"standard": "^11.0.0"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"standard": {
"globals": [
"afterAll",
"afterEach",
"beforeAll",
"beforeEach",
"describe",
"expect",
"fdescribe",
"fit",
"it",
"jest",
"test",
"xdescribe",
"xit"
],
"parser": "babel-eslint"
}
}