-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
49 lines (49 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
{
"name": "gulp-ruby-haml",
"version": "0.0.9",
"description": "Compile Haml to HTML with Ruby Haml",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cheshire137/gulp-ruby-haml.git"
},
"author": {
"name": "Sarah Vessels",
"email": "[email protected]",
"url": "http://www.sarahvessels.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "npm run-script style && npm run-script unit-test",
"jscs": "node_modules/.bin/jscs index.js test/test.js",
"jshint": "node_modules/.bin/jshint index.js test/test.js",
"style": "npm run-script jscs && npm run-script jshint",
"unit-test": "if [ -d \"tmp\" ]; then if find tmp -mindepth 1 -print -quit | grep -q .; then rm tmp/*; fi; fi; node_modules/.bin/mocha test/test.js"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"haml",
"html",
"compile",
"preprocessor",
"markup",
"ruby"
],
"dependencies": {
"gulp-util": "~2.2.0",
"through2": "~0.4.0",
"win-spawn": "~2.0.0",
"clone": "~0.1.11"
},
"devDependencies": {
"gulp": "~3.5.2",
"jscs": "^1.13.1",
"jshint": "^2.8.0",
"mocha": "*"
}
}