-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "metalsmith-postcss",
"version": "4.2.0",
"description": "A Metalsmith plugin that sends your CSS through any PostCSS plugins.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test --harmony",
"lint:js": "eslint . *.js --max-warnings 0",
"lint:security": "nsp check",
"lint": "npm run lint:js && npm run lint:security"
},
"repository": {
"type": "git",
"url": "git://github.com/axa-ch/metalsmith-postcss"
},
"keywords": [
"metalsmith",
"postcss",
"css",
"preprocessor"
],
"author": "AXA Versicherungen AG",
"license": "MIT",
"bugs": {
"url": "https://github.com/axa-ch/metalsmith-postcss/issues"
},
"homepage": "https://github.com/axa-ch/metalsmith-postcss",
"dependencies": {
"minimatch": "^3.0.4"
},
"peerDependencies": {
"postcss": "^5.0.4 || ^6.0.0"
},
"devDependencies": {
"assert-dir-equal": "^1.0.1",
"eslint": "^5.0.0",
"metalsmith": "^2.1.0",
"mocha": "^5.0.0",
"nsp": "^3.1.0",
"postcss-import": "^11.0.0"
}
}