-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 966 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 966 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
{
"name": "poisonjs",
"version": "0.0.1",
"description": "De-obfuscate eval-based JavaScript obfuscation with monkey-patched eval(-like) functions",
"main": "index.js",
"scripts": {
"build": "gulp",
"clean": "gulp clean",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "https://github.com/filipemgs/poisonjs.git"
},
"keywords": [
"JavaScript",
"poisoning",
"tamper",
"deobfuscate",
"unpack"
],
"author": "Filipe mgs <filipemgs@gmail.com>",
"license": "",
"bugs": {
"url": "https://github.com/filipemgs/poisonjs/issues"
},
"homepage": "https://github.com/filipemgs/poisonjs",
"dependencies": {},
"devDependencies": {
"browserify": "^16.5.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-uglify": "^3.0.2",
"lodash": "^4.17.15",
"react": "^0.14.8",
"reactify": "^1.1.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}