-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "sourdough-preprocessor",
"version": "2.0.1",
"description": "A CSS preprocessor for working with Sourdough",
"main": "lib/index.js",
"bin": {
"sourdough": "bin/sourdough"
},
"files": [
"bin",
"lib"
],
"dependencies": {
"autoprefixer": "^6.3.3",
"chokidar": "^1.4.2",
"colors": "~0.6.2",
"commander": "~2.1.0",
"node-watch": "0.3.4",
"pad-component": "0.0.1",
"postcss": "^5.0.19",
"postcss-calc": "^5.2.0",
"postcss-color-function": "^2.0.0",
"postcss-custom-media": "^5.0.1",
"postcss-custom-properties": "^5.0.0",
"postcss-custom-selectors": "^3.0.0",
"postcss-import": "^8.0.2",
"postcss-media-minmax": "^2.1.1",
"postcss-nested": "^1.0.0",
"read-file-stdin": "0.0.3",
"sugarss": "^0.1.2",
"write-file-stdout": "0.0.2"
},
"devDependencies": {
"mocha": "^1.20.1"
},
"scripts": {
"test": "mocha --reporter spec --slow 400",
"watch": "mocha --watch --reporter spec --slow 400"
},
"keywords": [
"css",
"preprocessor",
"postcss",
"sourdough",
"sugarss"
],
"repository": "git://github.com/sourdough-css/preprocessor.git",
"license": "MIT"
}