-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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": "grunt-regex-replace",
"description": "Grunt plugin to search and replace text content of files based on regular expression patterns",
"version": "0.4.0",
"homepage": "https://github.com/bomsy/grunt-regex-replace",
"author": {
"name": "Hubert Boma Manilla",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/bomsy/grunt-regex-replace.git"
},
"bugs": {
"url": "https://github.com/bomsy/grunt-regex-replace/issues"
},
"licence": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bomsy/grunt-regex-replace/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"bin": "bin/grunt-regex-replace",
"engines": {
"node": "*"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "^1.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-watch": "^1.0.0"
},
"keywords": [
"gruntplugin",
"regex",
"regexp",
"strings",
"string",
"replace",
"regular expressions"
]
}