forked from javascript-obfuscator/javascript-obfuscator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 725 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 725 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
{
"name": "javascript-obfuscator",
"version": "0.1.4",
"description": "JavaScript obfuscator",
"main": "index.js",
"dependencies": {
"esprima": "^2.7.2",
"escodegen": "^1.8.0",
"estraverse": "^4.2.0",
"typescript": "^1.8.10"
},
"devDependencies": {
"lite-server": "^1.3.1",
"tsd": "^0.6.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanex3339/javascript-obfuscator.git"
},
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" ",
"postinstall": "tsc",
"test": "node tests/dev-test.js"
},
"author": {
"name": "sanex3339"
},
"license": "ISC"
}