-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 880 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
37
38
39
40
41
42
43
{
"name": "uglier",
"version": "0.4.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 npm test",
"coveralls": "npm run coverage && nyc report -r text-lcov | coveralls"
},
"bin": {
"uglier": "./src/main.js"
},
"author": "Ray Myers",
"license": "MIT",
"repository": "git@github.com:raydog/uglier.git",
"dependencies": {
"@babel/parser": "7.14.3",
"chalk": "4.1.1",
"globby": "11.0.3",
"lodash": "4.17.21"
},
"devDependencies": {
"ava": "3.15.0",
"coveralls": "3.1.0",
"nyc": "15.1.0",
"temp": "0.9.4"
},
"ava": {
"verbose": true,
"files": [
"test/**/*.test.js"
]
}
}