-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
63 lines (63 loc) · 1.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "jfogs",
"version": "1.0.0-alpha.5",
"description": "Javascript code obfuscator",
"main": "lib/jfogs.js",
"bin": {
"jfogs": "cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/zswang/jfogs.git"
},
"keywords": [
"code",
"obfuscator"
],
"author": {
"name": "zswang",
"url": "http://weibo.com/zswang"
},
"contributors": [
{
"name": "finscn",
"url": "http://fins.iteye.com/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zswang/jfogs/issues"
},
"homepage": "https://github.com/zswang/jfogs",
"devDependencies": {
"@types/escodegen": "0.0.6",
"@types/esprima": "^4.0.2",
"istanbul": "^0.4.5",
"jdists": "^2.2.4",
"jshint": "^2.9.7",
"jstrs": "^1.1.7",
"mocha": "^5.2.0",
"should": "^4.6.5",
"ts-node": "^6.0.5",
"typescript": "^2.8.3"
},
"dependencies": {
"esprima": "^4.0.0",
"escodegen": "^1.9.0",
"mkdirp": "^0.5.0",
"colors": "^1.0.3",
"optimist": "^0.6.1"
},
"scripts": {
"_update_version": "node version.js",
"test": "istanbul cover --hook-run-in-context node_modules/mocha/bin/_mocha -- -R spec --timeout 15000",
"lint": "jshint src/*.js",
"dist": "npm run _update_version && jdists src/jfogs.js -o lib/jfogs.js && npm run lint && npm test",
"debug": "ts-node src/index.ts"
},
"files": [
"index.js",
"cli.js",
"lib"
]
}