-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 892 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 892 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
{
"name": "csscomb-core",
"version": "3.0.3",
"description": "Framework for writing postprocessors",
"dependencies": {
"gonzales-pe": "^3.3.6",
"minimatch": "3.0.2",
"vow": "0.4.4",
"vow-fs": "0.3.2"
},
"devDependencies": {
"babel": "^5.5.3",
"babel-polyfill": "^6.9.1",
"jscs": "1.13.x",
"jshint": "2.8.x",
"mocha": "1.20.x",
"unit-coverage": "3.4.x"
},
"files": [
"lib"
],
"main": "lib/core.js",
"maintainers": [
{
"name": "Tony Ganch",
"email": "tonyganch+github@gmail.com",
"web": "http://tonyganch.com/"
}
],
"license": "MIT",
"repository": "https://github.com/csscomb/core",
"scripts": {
"build": "./scripts/build.sh",
"coverage": "./scripts/build.sh && ./scripts/coverage.sh",
"prepublish": "./scripts/build.sh",
"test": "./scripts/build.sh && ./scripts/test.sh"
}
}