-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 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
55
{
"name": "variable-replacer",
"version": "1.6.0",
"description": "The simplest templating engine: only replace variables in files",
"main": "lib/variable-replacer.js",
"license": "GPL-2.0",
"bin": {
"variable-replacer": "./lib/variable-replacer"
},
"homepage": "https://github.com/felicienfrancois/node-variable-replacer",
"repository": {
"type": "git",
"url": "https://github.com/felicienfrancois/node-variable-replacer.git"
},
"author": {
"name": "Felicien Francois",
"email": "[email protected]",
"url": "http://tweakstyle.com"
},
"bugs": {
"url": "https://github.com/felicienfrancois/node-variable-replacer/issues"
},
"licenses": [
{
"type": "Open Source",
"url": "https://github.com/felicienfrancois/node-variable-replacer/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 0.8.0"
},
"readmeFilename": "README.md",
"keywords": [
"template",
"engine",
"simple",
"variable",
"replacer",
"replace",
"pattern",
"json",
"input",
"file",
"processing",
"node",
"cli"
],
"dependencies": {
"async": "^1.5.0",
"glob": "^6.0.1",
"istextorbinary": "^1.0.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1"
}
}