forked from eliranmal/grunt-sass-replace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "grunt-sass-replace-values",
"description": "Replaces sass values with Grunt. Patched and based on https://github.com/eliranmal/grunt-sass-replace",
"version": "0.2.0",
"homepage": "https://github.com/philiprenich/grunt-sass-replace",
"author": {
"name": "Philip Renich",
"email": "hello@philiprenich.com"
},
"main": "tasks/sass-replace",
"repository": {
"type": "git",
"url": "git://github.com/philiprenich/grunt-sass-replace.git"
},
"bugs": {
"url": "https://github.com/philiprenich/grunt-sass-replace/issues"
},
"license": "WTFPL",
"engines": {
"node": ">= 8.9.4",
"npm": ">= 5.6.0"
},
"scripts": {
"sanitize": "grunt jshint",
"test": "grunt clean && grunt sass-replace --force && grunt nodeunit"
},
"devDependencies": {
"grunt": "~1.0.2",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-nodeunit": "^1.0.0"
},
"keywords": [
"gruntplugin",
"sass",
"replace",
"variable",
"import",
"substitute",
"string",
"regexp",
"css"
],
"dependencies": {
"escape-string-regexp": "^1.0.5",
"grunt-string-replace": "^1.3.0"
}
}