-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
60 lines (60 loc) · 1.31 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
56
57
58
59
60
{
"name": "grunt-preprocess",
"description": "Preprocess HTML and JavaScript directives based off environment configuration",
"version": "5.1.0",
"homepage": "https://github.com/jsoverson/grunt-preprocess",
"author": {
"name": "Jarrod Overson",
"email": "[email protected]",
"url": "http://jarrodoverson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/jsoverson/grunt-preprocess.git"
},
"bugs": {
"url": "https://github.com/jsoverson/grunt-preprocess/issues"
},
"licenses": [
{
"type": "Apache",
"url": "https://github.com/jsoverson/grunt-preprocess/blob/master/LICENSE"
}
],
"main": "Gruntfile.js",
"bin": "bin/grunt-preprocess",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "grunt test"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"dependencies": {
"lodash": "^4.5.0",
"preprocess": "^3.0.2"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^0.4.0"
},
"keywords": [
"gruntplugin",
"directive",
"var",
"ENV",
"environment",
"ifdef",
"echo",
"include",
"exclude",
"process",
"preprocess",
"pragma"
]
}