forked from terser/terser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 1.91 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "terser",
"description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+",
"homepage": "https://github.com/fabiosantoscode/terser",
"author": "Mihai Bazon <[email protected]> (http://lisperator.net/)",
"license": "BSD-2-Clause",
"version": "3.7.6",
"engines": {
"node": ">=0.8.0"
},
"maintainers": [
"Fábio Santos <[email protected]>",
"Alex Lam <[email protected]>",
"Mihai Bazon <[email protected]> (http://lisperator.net/)"
],
"repository": "https://github.com/fabiosantoscode/terser.git",
"main": "tools/node.js",
"browser": "dist/browser.bundle.js",
"bin": {
"terser": "bin/uglifyjs"
},
"files": [
"bin",
"lib",
"dist",
"tools",
"LICENSE"
],
"dependencies": {
"commander": "~2.14.1",
"source-map": "~0.6.1"
},
"devDependencies": {
"acorn": "~5.4.1",
"escodegen": "^1.9.1",
"eslint": "^4.19.1",
"mocha": "~3.5.1",
"pre-commit": "^1.2.2",
"semver": "~5.5.0"
},
"scripts": {
"test": "node test/run-tests.js",
"lint": "eslint lib",
"lint-fix": "eslint --fix lib",
"prepublish": "node bin/uglifyjs --self -d \"MOZ_SourceMap=require('source-map')\" -e Terser:module.exports --beautify -o dist/browser.bundle.js"
},
"keywords": [
"uglify",
"terser",
"uglify-es",
"uglify-js",
"minify",
"minifier",
"javascript",
"ecmascript",
"es5",
"es6",
"es7",
"es8",
"es2015",
"es2016",
"es2017",
"async",
"await"
],
"eslintConfig": {
"rules": {
"quotes": [
"error",
"double",
"avoid-escape"
],
"no-debugger": "error",
"semi": [
"error",
"always"
],
"no-extra-semi": "error",
"no-irregular-whitespace": "error",
"space-before-blocks": [
"error",
"always"
]
}
},
"pre-commit": "lint"
}