-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 964 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 964 Bytes
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": "koa-postcss",
"version": "0.4.2",
"description": "Caching PostCSS middleware for Koa.js",
"main": "index.js",
"scripts": {
"test": "mocha test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/HowlingEverett/koa-postcss.git"
},
"keywords": [
"postcss",
"koa",
"middleware"
],
"author": "Justin Marrington (@howlingeverett)",
"license": "MIT",
"bugs": {
"url": "https://github.com/HowlingEverett/koa-postcss/issues"
},
"homepage": "https://github.com/HowlingEverett/koa-postcss#readme",
"devDependencies": {
"autoprefixer": "^6.1.2",
"koa": "^1.0.0",
"koa-static": "^1.4.9",
"mocha": "^2.3.4",
"postcss": "^5.0.12",
"should": "^8.0.1",
"sinon": "^1.17.1",
"supertest-koa-agent": "^0.2.1"
},
"peerDependencies": {
"postcss": ">=5.0"
},
"dependencies": {
"co": "^4.6.0",
"es6-promisify": "^3.0.0",
"mkdirp": "^0.5.1"
}
}