forked from raydog/uglier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 844 Bytes
/
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
{
"name": "uglier",
"version": "0.3.1",
"description": "A simple tool to take JS code and make it much, much worse",
"keywords": ["ugly", "uglier", "format", "formatter", "code format", "prettier"],
"main": "src/index.js",
"scripts": {
"test": "ava",
"coverage": "nyc -a -r html -r text-summary ava",
"coveralls": "nyc -a -r text-lcov ava | coveralls"
},
"bin": {
"uglier": "./src/main.js"
},
"author": "Ray Myers",
"license": "MIT",
"repository": "[email protected]:raydog/uglier.git",
"dependencies": {
"babylon": "6.17.4",
"chalk": "1.1.3",
"globby": "6.1.0",
"lodash": "4.17.4"
},
"devDependencies": {
"ava": "0.19.1",
"coveralls": "2.13.1",
"nyc": "11.0.2",
"temp": "0.8.3"
},
"ava": {
"verbose": true,
"files": [
"test/**/*.test.js"
]
}
}