-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "grunt-contrib-obfuscator",
"description": "Grunt plugin that obfuscates your JavaScript using the javascript-obfuscator library.",
"version": "8.0.0",
"author": {
"name": "Tiago Serafim"
},
"repository": "javascript-obfuscator/grunt-contrib-obfuscator",
"license": "MIT",
"engines": {
"node": ">=4"
},
"main": "tasks/obfuscator.js",
"scripts": {
"test": "grunt test",
"preversion": "npm test",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"chalk": "^1.0.0",
"javascript-obfuscator": "^2.0.0"
},
"devDependencies": {
"grunt": "^1.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-internal": "^1.1.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0"
},
"peerDependencies": {
"javascript-obfuscator": "^2.0.0"
},
"keywords": [
"gruntplugin",
"obfuscator",
"js obfuscator",
"javascript obfuscator",
"obfuscation",
"code protection",
"grunt obfuscator",
"javascript"
],
"files": [
"tasks"
]
}