-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
{
"author": "Paul Serby <paul@serby.net>",
"name": "compact",
"description": "A JavaScript compacting middleware for express",
"version": "0.1.2",
"repository": {
"type": "git",
"url": "git://github.com/serby/compact.git"
},
"main": "./lib/compact.js",
"scripts": {
"lint": "eslint -f unix .",
"prettier": "prettier --write '**/*.js'",
"test": "mocha -r should -R spec"
},
"engines": {
"node": ">=0.8"
},
"dependencies": {
"async": "^3.1.0",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"uglify-js": "~1.3.5"
},
"devDependencies": {
"async": "^3.1.0",
"asyncjs": "^0.0.13",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.2.0",
"prettier": "^1.18.2",
"should": "^13.2.3"
}
}