-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
{
"name": "postcss-load-plugins",
"version": "2.3.0",
"description": "Autoload Plugins for PostCSS",
"engines": { "node": ">=0.12" },
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "nyc ava -v test/err/index.js test/rc/index.js test/pkg/index.js test/js/**/index.js",
"logs": "standard-changelog -i CHANGELOG.md -w",
"docs": "jsdoc2md index.js lib/plugins.js > INDEX.md",
"clean": "rm -rf .nyc_output coverage jsdoc-api dmd",
"start": "sudo npm run clean && npm run lint && sudo npm test"
},
"dependencies": {
"cosmiconfig": "^4.0.0",
"object-assign": "^4.1.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^2.11.16",
"cssnano": "^3.10.0",
"jsdoc-to-markdown": "^4.0.0",
"nyc": "^11.0.1",
"postcss": "^6.0.3",
"postcss-cssnext": "^3.0.0",
"postcss-import": "^11.1.0",
"postcss-nested": "^1.0.0",
"postcss-sprites": "^4.2.0",
"standard": "^10.0.3",
"standard-changelog": "1.0.8",
"sugarss": "^0.2.0"
},
"files": [
"lib",
"index.js"
],
"keywords": [
"postcss",
"postcss-plugin"
],
"author": {
"name": "Michael Ciniawky",
"email": "[email protected]"
},
"contributors": [
{
"name": "Mateusz Derks",
"url": "http://ertrzyiks.me"
},
{
"name": "Diogo Franco",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/michael-ciniawsky/postcss-load-plugins.git"
},
"bugs": {
"url": "https://github.com/michael-ciniawsky/postcss-load-plugins/issues"
},
"homepage": "https://github.com/michael-ciniawsky/postcss-load-plugins#readme",
"license": "MIT"
}