forked from eliranmal/grunt-sass-replace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.24 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
51
52
53
54
{
"name": "grunt-sass-replace",
"description": "replaces sass values with grunt",
"version": "0.1.18",
"homepage": "https://github.com/eliranmal/grunt-sass-replace",
"author": {
"name": "eliranmal",
"email": "eliranmal@gmail.com"
},
"main": "tasks/sass-replace",
"repository": {
"type": "git",
"url": "git://github.com/eliranmal/grunt-sass-replace.git"
},
"bugs": {
"url": "https://github.com/eliranmal/grunt-sass-replace/issues"
},
"licenses": [
{
"type": "WTFPL",
"url": "https://github.com/eliranmal/grunt-sass-replace/blob/master/LICENSE.txt"
}
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"sanitize": "grunt jshint",
"test": "grunt clean; grunt sass-replace --force; grunt nodeunit",
"release": "standard-version"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-jshint": "^0.9.2",
"grunt-contrib-nodeunit": "^0.3.3",
"standard-version": "^2.4.0"
},
"keywords": [
"gruntplugin",
"sass",
"replace",
"variable",
"import",
"substitute",
"string",
"regexp",
"css"
],
"dependencies": {
"escape-string-regexp": "^1.0.5",
"grunt-string-replace": "^1.3.0"
}
}