-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.48 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
{
"name": "esmangle",
"description": "ECMAScript code mangler / minifier",
"homepage": "http://github.com/Constellation/esmangle.html",
"main": "lib/esmangle.js",
"bin": {
"esmangle": "./bin/esmangle.js"
},
"version": "1.0.0",
"engines": {
"node": ">=0.6.0"
},
"directories": {
"lib": "./lib"
},
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "[email protected]",
"web": "http://github.com/Constellation"
}
],
"repository": {
"type": "git",
"url": "http://github.com/Constellation/esmangle.git"
},
"dependencies": {
"source-map": "~ 0.1.13",
"esutils": "~ 1.0.0",
"optimist": "*",
"esshorten": "~1.1.0",
"estraverse": "~1.5.0",
"escope": "~1.0.1",
"escodegen": "~1.1.0",
"esprima": "~1.0.4"
},
"devDependencies": {
"chai": "*",
"grunt-contrib-jshint": "~0.8.0",
"grunt-mocha-test": "~0.8.1",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-clean": "~0.5.0",
"async": "~0.2.9",
"q": "~0.9.7",
"commonjs-everywhere": "~0.9.4",
"grunt-cli": "~0.1.11",
"grunt": "~0.4.2",
"grunt-update-submodules": "~0.2.1",
"grunt-shell": "~0.6.1"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/Constellation/esmangle/raw/master/LICENSE.BSD"
}
],
"scripts": {
"test": "grunt travis",
"lint": "grunt lint",
"regression-test": "grunt test:regression",
"unit-test": "grunt test",
"build": "grunt build"
}
}