-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.2 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
50
{
"name": "sass-composer",
"version": "2.0.0-beta16",
"author": "James Newell <[email protected]>",
"keywords": [
"sass",
"composer",
"import",
"libsass",
"scss",
"style",
"node",
"watch",
"npm",
"require",
"browserify"
],
"description": "Compose CSS from SASS files using Node's algorithm to resolve `@import` statements. Plus more goodness.",
"main": "lib/composer.js",
"dependencies": {
"chokidar": "^1.2.0",
"commander": "^2.8.1",
"concat-stream": "^1.5.0",
"debug": "^2.1.3",
"extend": "^3.0.0",
"fs-extra": "^0.26.2",
"mkdirp": "^0.5.0",
"node-sass": "^3.7.0",
"read-only-stream": "^2.0.0",
"resolve": "^1.1.6",
"through2": "^2.0.0"
},
"devDependencies": {
"mocha": "^2.2.4",
"mocha-jenkins-reporter": "^0.1.8",
"sinon": "^1.17.3"
},
"bin": {
"sass-composer": "./bin/sass-composer"
},
"scripts": {
"test": "JUNIT_REPORT_PATH=$CIRCLE_TEST_REPORTS/results.xml mocha test/**/*.js --reporter mocha-jenkins-reporter",
"test.local": "mocha test/**/*.js"
},
"repository": {
"type": "git",
"url": "[email protected]:digitaledgeit/sass-composer.git"
},
"license": "MIT"
}