-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 998 Bytes
/
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
{
"name": "confusion",
"version": "0.1.1",
"description": "Simple obfuscator for JavaScript source code",
"main": "index.js",
"bin": "bin/confusion",
"scripts": {
"prepublish": "npm test",
"test": "mocha -u mocha-given --reporter dot --compilers ls:coffee-script/register test.coffee"
},
"repository": {
"type": "git",
"url": "https://github.com/uxebu/confusion"
},
"keywords": [
"obfuscator",
"obfuscation"
],
"author": "uxebu (http://uxebu.com)",
"contributors": [
"David Aurelio <da@uxebu.com>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/uxebu/confusion/issues"
},
"homepage": "https://github.com/uxebu/confusion",
"devDependencies": {
"coffee-script": "^1.9.1",
"mocha": "^2.2.1",
"mocha-given": "^0.1.3",
"sinon": "^1.13.0"
},
"dependencies": {
"ast-types": "^0.7.0",
"concat-stream": "^1.4.7",
"escodegen": "^1.6.1",
"estraverse": "^2.0.0",
"recast": "^0.10.7"
}
}