-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.72 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.72 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@fwd/obfuscate",
"version": "0.1.0",
"description": "World Class JavaScript Obfuscation",
"keywords": [],
"engines": {
"node": ">=10"
},
"main": "dist/index.js",
"browser": "dist/index.browser.js",
"bin": {
"javascript-obfuscator": "./bin/javascript-obfuscator"
},
"types": "index.d.ts",
"dependencies": {
"@javascript-obfuscator/escodegen": "2.1.1",
"acorn": "8.0.4",
"assert": "2.0.0",
"chalk": "4.1.0",
"chance": "1.1.7",
"class-validator": "0.13.1",
"commander": "7.0.0",
"eslint-scope": "5.1.1",
"estraverse": "5.2.0",
"fast-deep-equal": "3.1.3",
"inversify": "5.0.5",
"js-string-escape": "1.0.1",
"md5": "2.3.0",
"mkdirp": "1.0.4",
"multimatch": "5.0.0",
"process": "0.11.10",
"reflect-metadata": "0.1.13",
"source-map-support": "0.5.19",
"string-template": "1.0.0",
"stringz": "2.1.0",
"tslib": "2.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/chai": "4.2.14",
"@types/chance": "1.1.1",
"@types/escodegen": "0.0.6",
"@types/eslint-scope": "3.7.0",
"@types/estraverse": "5.1.0",
"@types/estree": "0.0.45",
"@types/js-string-escape": "1.0.0",
"@types/md5": "2.2.1",
"@types/mkdirp": "1.0.1",
"@types/mocha": "8.2.0",
"@types/multimatch": "4.0.0",
"@types/node": "14.14.21",
"@types/rimraf": "3.0.0",
"@types/sinon": "9.0.10",
"@types/string-template": "1.0.2",
"@types/webpack-env": "1.16.0",
"@typescript-eslint/eslint-plugin": "4.13.0",
"@typescript-eslint/parser": "4.13.0",
"chai": "4.2.0",
"chai-exclude": "2.0.2",
"cross-env": "7.0.3",
"eslint": "7.18.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "31.0.5",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-unicorn": "26.0.1",
"fork-ts-checker-notifier-webpack-plugin": "3.0.0",
"fork-ts-checker-webpack-plugin": "6.1.0",
"mocha": "8.2.1",
"nyc": "15.1.0",
"pjson": "1.0.9",
"pre-commit": "1.2.2",
"rimraf": "3.0.2",
"sinon": "9.2.3",
"threads": "1.6.3",
"ts-loader": "8.0.14",
"ts-node": "9.1.1",
"typescript": "4.1.3",
"webpack": "5.15.0",
"webpack-cli": "4.3.1",
"webpack-node-externals": "2.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascript-obfuscator/javascript-obfuscator.git"
},
"homepage": "https://obfuscator.io/",
"scripts": {
"start": "yarn run watch",
"webpack:prod": "webpack --config ./webpack/webpack.node.config.js --config ./webpack/webpack.browser.config.js --mode production",
"build": "yarn run webpack:prod && yarn run eslint && yarn test",
"watch": "webpack --config ./webpack/webpack.node.config.js --mode development --watch",
"test:dev": "ts-node --type-check test/dev/dev.ts",
"test:devCompilePerformance": "ts-node test/dev/dev-compile-performance.ts",
"test:devRuntimePerformance": "ts-node test/dev/dev-runtime-performance.ts",
"test:full": "yarn run test:dev && yarn run test:mocha-coverage && yarn run test:mocha-memory-performance",
"test:mocha": "mocha --require ts-node/register --require source-map-support/register test/index.spec.ts --exit",
"test:mocha-coverage": "nyc --reporter text-summary --no-clean yarn run test:mocha",
"test:mocha-coverage:report": "nyc report --reporter=lcov",
"test:mocha-memory-performance": "cross-env NODE_OPTIONS=--max-old-space-size=220 mocha --require ts-node/register test/performance-tests/JavaScriptObfuscatorMemory.spec.ts",
"test": "yarn run test:full",
"eslint": "eslint src/**/*.ts",
"git:addFiles": "git add ."
},
"pre-commit": [
"build",
"git:addFiles"
]
}