-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "esmangle",
"description": "ECMAScript code mangler / minifier",
"homepage": "http://github.com/estools/esmangle.html",
"main": "lib/esmangle.js",
"bin": {
"esmangle": "./bin/esmangle.js"
},
"version": "1.0.2-dev",
"engines": {
"node": ">=0.10.0"
},
"directories": {
"lib": "./lib"
},
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "[email protected]",
"web": "http://github.com/Constellation"
}
],
"repository": {
"type": "git",
"url": "http://github.com/estools/esmangle.git"
},
"dependencies": {
"camel-case": "^1.1.2",
"escodegen": "~1.6.1",
"escope": "~2.0.6",
"esprima": "^2.0.0",
"estraverse": "~4.1.1",
"esutils": "~2.0.2",
"esshorten": "~1.1.0",
"isarray": "0.0.1",
"optionator": "^0.5.0",
"source-map": "^0.4.1"
},
"devDependencies": {
"async": "~0.9.0",
"chai": "*",
"clone": "^1.0.0",
"commonjs-everywhere": "~0.9.7",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-mocha-test": "~0.12.4",
"grunt-shell": "~1.1.1",
"grunt-update-submodules": "~0.4.1",
"mocha": "^2.4.5",
"q": "^1.2.0",
"xyz": "^0.5.0"
},
"license": "BSD-2-Clause",
"scripts": {
"test": "grunt travis",
"lint": "grunt lint",
"regression-test": "grunt test:regression",
"unit-test": "grunt test",
"build": "grunt build"
}
}