This repository was archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "grunt-string-replace",
"description": "Replaces strings on files by using string or regex patterns. Attempts to be a String.prototype.replace adapter task for your grunt project.",
"version": "1.3.3",
"homepage": "https://github.com/eruizdechavez/grunt-string-replace",
"author": {
"name": "Erick Ruiz de Chavez",
"email": "[email protected]",
"url": "http://erickruizdechavez.com"
},
"repository": {
"type": "git",
"url": "git://github.com/eruizdechavez/grunt-string-replace.git"
},
"bugs": {
"url": "https://github.com/eruizdechavez/grunt-string-replace/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/eruizdechavez/grunt-string-replace/blob/master/LICENSE-MIT"
}
],
"main": "tasks/string-replace",
"bin": "bin/grunt-string-replace",
"engines": {
"node": ">= 0.10.0",
"npm": ">= 1.4.15"
},
"scripts": {
"test": "grunt --verbose --env=test",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"grunt": "^1.0.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^4.0.0",
"grunt-contrib-watch": "^1.0.0"
},
"keywords": [
"gruntplugin",
"string",
"replace",
"regex"
],
"dependencies": {
"async": "^3.2.3",
"chalk": "^4.1.2"
}
}