-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
49 lines (49 loc) · 1.03 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
{
"name": "esshorten",
"description": "Shorten (mangle) names in JavaScript code",
"main": "lib/esshorten.js",
"version": "2.0.0-dev",
"engines": {
"node": ">=4.0.0"
},
"directories": {
"lib": "./lib"
},
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "[email protected]",
"web": "http://github.com/Constellation"
}
],
"repository": {
"type": "git",
"url": "http://github.com/estools/esshorten.git"
},
"dependencies": {
"escope": "~3.3.0",
"estraverse": "~4.1.1",
"esutils": "~2.0.2"
},
"devDependencies": {
"chai": "*",
"coffee-script": "~1.10.0",
"commonjs-everywhere": "~0.9.7",
"esprima": "^2.7.2",
"gulp": "~3.9.0",
"gulp-jshint": "~1.11.2",
"gulp-mocha": "~2.1.3",
"jshint-stylish": "~2.0.1"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/estools/esshorten/raw/master/LICENSE.BSD"
}
],
"scripts": {
"test": "gulp travis",
"lint": "gulp lint",
"unit-test": "gulp test"
}
}