-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name" : "procss",
"version" : "0.1.1",
"description" : "Plugins-based CSS post-processor",
"license" : "MIT",
"repository" : {
"type" : "git",
"url" : "https://github.com/vindm/procss"
},
"homepage" : "https://github.com/vindm/procss",
"bin" : {
"procss" : "./bin/procss"
},
"scripts" : {
"test" : "jshint --config ./.jshintrc ./lib ./test && jscs ./lib ./test && mocha -u exports -R spec ./test"
},
"author" : {
"name" : "Dmitriy Vinokurov",
"email" : "[email protected]",
"url" : "http://github.com/vindm"
},
"dependencies" : {
"globule" : "^0.2.0",
"extend" : "^2.0.0",
"vow" : "^0.4.5",
"coa" : "^0.4.1",
"postcss" : "^2.2.5",
"colors" : "^1.0.3"
},
"devDependencies" : {
"mocha" : "1.21.x",
"chai" : "1.9.x",
"jshint" : "2.5.x",
"jscs" : ">=1.6.x"
},
"readmeFilename" : "README.md",
"engines" : [
"node >= 0.6.0"
]
}