forked from stephenmathieson/node-obfuscator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1016 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1016 Bytes
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
{
"name": "obfuscator",
"version": "0.5.4",
"scripts": {
"test": "make all"
},
"description": "Code protection / obfuscation for node",
"keywords": [
"code protection",
"obfuscator",
"uglify"
],
"author": "Stephen Mathieson <me@stephenmathieson.com>",
"repository": {
"type": "git",
"url": "git://github.com/stephenmathieson/node-obfuscator.git"
},
"dependencies": {
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"commander": "~2.0.0"
},
"devDependencies": {
"better-assert": "~1.0.0",
"glob": "~3.2.7",
"jshint": "~2.0.1",
"mocha": "^2.3.0",
"should": "~1.2.2",
"supertest": "~0.6.0"
},
"bin": {
"obfuscator": "bin/obfuscator"
},
"main": "index.js",
"bugs": {
"url": "https://github.com/stephenmathieson/node-obfuscator/issues"
},
"homepage": "https://github.com/stephenmathieson/node-obfuscator",
"directories": {
"example": "examples",
"test": "test"
},
"license": "MIT"
}