-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"name": "postcssify",
"version": "2.6.7",
"description": "Browserify transform for postcss",
"main": "lib/index.js",
"scripts": {
"test": "node test | tap-difflet",
"cover": "istanbul cover --report none --print detail test/index.js",
"view-cover": "istanbul report html && open ./coverage/index.html",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)"
},
"keywords": [
"browserify",
"plugin",
"postcss",
"transform",
"browserify-plugin"
],
"author": "Vigour <dev@vigour.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/vigour-io/postcssify/issues"
},
"contributors": [
"Shawn Inder <shawn@vigour.io>"
],
"repository": {
"type": "git",
"url": "https://github.com/vigour-io/postcssify"
},
"homepage": "https://github.com/vigour-io/postcssify",
"dependencies": {
"brisky-base": "^4.0.0",
"bole": "^3.0.0",
"browser-resolve": "^1.11.1",
"is-builtin-module": "^1.0.0",
"postcss": "^5.0.0",
"postcss-calc": "^5.0.0",
"postcss-cssnext": "^2.0.0",
"postcss-url": "^5.1.2",
"css-mediaquery": "0.1.2",
"through2": "^2.0.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"vigour-fs-promised": "^2.0.2",
"tape": "^4.4.0",
"tap-difflet": "0.4.0",
"standard": "^7.0.1",
"nodemon": "^1.9.1",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"pre-commit": "^1.1.3"
},
"engines": {
"node": ">=4"
}
}