forked from JossyDevers/minify-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 915 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
{
"name": "minify-js",
"version": "3.0.0",
"description": "Minifies html, javascript and css files",
"main": "index.js",
"bin": {
"minify-js": "./bin/cli.js"
},
"scripts": {
"test:unit": "jest --coverage",
"test:onlychanged": "jest --onlyChanged --coverage",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run test:unit"
},
"keywords": [
"minify",
"js",
"cli"
],
"author": "devatherock",
"license": "MIT",
"dependencies": {
"yargs": "^17.7.2",
"minify": "^9.2.0",
"simple-node-logger": "^21.8.12"
},
"devDependencies": {
"jest": "^25.2.6",
"standard": "^14.3.3"
},
"standard": {
"globals": [
"describe",
"test",
"expect",
"jest"
]
}
}