-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
58
59
{
"name": "mini-cup",
"version": "2.0.0-beta",
"type": "commonjs",
"description": "Easy to serve static web resources, Easy to proxy requests.",
"keywords": [
"web server",
"lightweight",
"test",
"container",
"runner"
],
"main": "src/actions.js",
"bin": {
"cup": "./bin/cli.js"
},
"dependencies": {
"body-parser": "^1.14.1",
"chalk": "4.1.2",
"commander": "^9.3.0",
"compression": "^1.6.2",
"express": "^4.13.3",
"express-session": "^1.13.0",
"http-proxy-middleware": "^2.0.6",
"morgan": "^1.8.1"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"standard-version": "^9.5.0"
},
"scripts": {
"cup": "cup",
"test": "mocha",
"eslint": "eslint src/** bin/** --fix",
"serve": "node src/server.js",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/wewoor/cup"
},
"author": "Ziv",
"maintainers": [
"Ziv <[email protected]> (imziv.com)"
],
"homepage": "https://github.com/wewoor/cup",
"bugs": {
"url": "https://github.com/wewoor/cup/issues",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}