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
59 lines (59 loc) · 1.78 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.78 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
{
"name": "javascript-obfuscator",
"version": "0.6.0",
"description": "JavaScript obfuscator",
"keywords": [
"obfuscator",
"obfuscation",
"uglify",
"crush",
"code protection",
"javascript obfuscator",
"js obfuscator"
],
"main": "dist/index.js",
"dependencies": {
"chance": "^1.0.3",
"escodegen": "^1.8.0",
"esprima": "^2.7.2",
"estraverse": "^4.2.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"istanbul": "^1.0.0-alpha.2",
"lite-server": "^1.3.1",
"mocha": "^2.5.3",
"source-map-support": "^0.4.0",
"ts-loader": "^0.8.2",
"ts-node": "^0.9.1",
"typescript": "^1.8.10",
"typings": "^0.8.1",
"webpack": "^2.1.0-beta.12",
"webpack-node-externals": "^1.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanex3339/javascript-obfuscator.git"
},
"scripts": {
"start": "npm run watch",
"webpack": "node_modules/.bin/webpack",
"build": "npm run webpack && npm test",
"watch": "node_modules/.bin/webpack --watch",
"test:compile": "node_modules/.bin/tsc -p tsconfig-test.json",
"test:dev": "node test/dev/test.js",
"test:full": "npm run test:compile && node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- test-tmp/test/**/**.spec.js && npm run test:removeTestTmpDir",
"test:mocha": "npm run test:compile && node_modules/.bin/mocha test-tmp/test/**/**.spec.js && npm run test:removeTestTmpDir",
"test:removeTestTmpDir": "rm -rf test-tmp",
"test": "npm run test:dev && npm run test:full",
"typings": "node_modules/.bin/typings install"
},
"author": {
"name": "Timofey Kachalov"
},
"license": "BSD-2-Clause"
}