forked from songkick/replaceinfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 915 Bytes
/
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
{
"name": "@songkick/replaceinfiles",
"version": "1.1.4",
"description": "Utility to replace a map of strings in many files",
"main": "index.js",
"bin": {
"replaceinfiles": "cli.js"
},
"scripts": {
"test": "tap test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Songkick/replaceinfiles.git"
},
"keywords": [
"cli",
"file",
"replace"
],
"author": "Arnaud Rinquin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Songkick/replaceinfiles/issues"
},
"homepage": "https://github.com/Songkick/replaceinfiles#readme",
"dependencies": {
"commander": "^2.9.0",
"digest-stream": "^0.2.2",
"glob": "^6.0.1",
"replacestream": "^4.0.0",
"stream-cache": "0.0.2"
},
"devDependencies": {
"rimraf": "^2.4.4",
"tap": "^2.3.1"
},
"directories": {
"example": "examples",
"test": "test"
}
}