-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "grunt-redact",
"description": "Pre-packaging feature toggle support for static applications where toggle-related code can't be delivered to the client.",
"version": "0.0.4",
"homepage": "https://github.com/carlosaml/grunt-redact",
"author": {
"name": "Carlos Lopes",
"email": "carlosaml@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/carlosaml/grunt-redact.git"
},
"bugs": {
"url": "https://github.com/carlosaml/grunt-redact/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/carlosaml/grunt-redact/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"redact": "~0.0.9",
"lodash": "~3.10.1"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-jasmine-node": "~0.1.0",
"load-grunt-tasks": "^3.1.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin",
"toggles",
"feature toggles",
"feature flags"
]
}