-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.1 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
{
"name": "emojify",
"description": "A useless tool that replaces boring variable names with their fun emoji counterparts",
"author": "Dan Thareja <[email protected]>",
"license": "BSD",
"version": "1.0.1",
"engines": {
"node": ">=0.4.0"
},
"maintainers": [
"Dan Thareja <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/danthareja/emojify.git"
},
"bugs": {
"url": "https://github.com/danthareja/emojify/issues"
},
"main": "tools/node.js",
"bin": {
"emojify": "bin/emojify"
},
"files": [
"bin",
"lib",
"tools",
"LICENSE"
],
"keywords": [
"emojify",
"emoji",
"uglify",
"minify",
"mangle"
],
"dependencies": {
"async": "~0.2.6",
"source-map": "0.1.34",
"uglify-to-browserify": "~1.0.0",
"yargs": "~3.5.4"
},
"devDependencies": {
"acorn": "~0.6.0",
"escodegen": "~1.3.3",
"esfuzz": "~0.3.1",
"estraverse": "~1.5.1"
},
"browserify": {
"transform": [
"uglify-to-browserify"
]
},
"scripts": {
"test": "node test/run-tests.js"
}
}