-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.13 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": "gulp-banana",
"version": "0.1.0",
"description": "Gulp plugin for compile Banana code to CSS.",
"license": "MIT",
"author": {
"name": "Afonso Pacifer",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/bananacss/gulp-banana/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bananacss/gulp-banana"
},
"main": "index.js",
"keywords": [
"gulpplugin",
"bananacss",
"css",
"parser",
"style",
"preprocessor",
"stylesheets",
"superset",
"language"
],
"scripts": {
"test": "mocha test/index.js",
"cover": "istanbul cover _mocha -- ./test/* --recursive",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"eslint": "eslint index.js test/*"
},
"dependencies": {
"bananacss": "^0.8.0",
"gulp-util": "^3.0.7",
"replace-ext": "^1.0.0",
"through2": "^2.0.1"
},
"devDependencies": {
"coveralls": "^2.11.12",
"eslint": "^3.2.2",
"istanbul": "^0.4.4",
"mocha": "^3.0.0",
"mocha-lcov-reporter": "^1.2.0",
"vinyl": "^1.2.0"
}
}