-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
104 lines (104 loc) · 2.67 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "ravel",
"version": "1.0.0-rc.14",
"author": "Sean McIntyre <[email protected]>",
"description": "Ravel Rapid Application Development Framework",
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"koa",
"web",
"app",
"http",
"application",
"architecture",
"framework",
"middleware",
"generators",
"es6",
"modules",
"promises"
],
"contributors": [
{
"name": "Sean McIntyre",
"email": "[email protected]"
},
{
"name": "Michael Laccetti",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/raveljs/ravel.git"
},
"main": "dist/ravel.js",
"scripts": {
"clean": "gulp clean",
"docs": "gulp docs",
"watch": "gulp watch",
"test": "cross-env NODE_ENV=test npm run lint && npm run jest",
"test-no-cov": "cross-env NODE_ENV=test npm run lint && npm run jest-no-cov",
"test-windows": "npm run test-no-cov",
"lint": "npm run lint:lib && npm run lint:jest",
"lint:lib": "eslint ./lib",
"lint:jest": "eslint ./jest",
"jest": "cross-env NODE_ENV=test jest --coverage --silent",
"jest-no-cov": "cross-env NODE_ENV=test jest --silent",
"show-coverage": "gulp show-coverage",
"show-docs": "gulp show-docs",
"dist": "gulp dist",
"prepare": "gulp dist"
},
"dependencies": {
"fs-readdir-recursive": "1.1.0",
"intel": "1.2.0",
"keygrip": "1.1.0",
"koa": "2.13.1",
"koa-compose": "4.1.0",
"koa-compress": "5.0.1",
"koa-favicon": "2.1.0",
"koa-passport": "4.1.3",
"koa-session": "6.1.0",
"koa-static": "5.0.0",
"node-fs": "0.1.7",
"passport": "0.4.1",
"path-to-regexp": "5.0.0",
"redis": "3.0.2",
"redis-mock": "0.56.3",
"upath": "2.0.1",
"ws": "7.4.3"
},
"devDependencies": {
"cross-env": "7.0.3",
"documentation": "13.1.1",
"yamljs": "0.3.0",
"jest": "26.6.3",
"eslint": "7.19.0",
"eslint-config-standard": "16.0.2",
"eslint-config-semistandard": "15.0.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-jsdoc": "31.6.0",
"supertest": "6.1.3",
"passport-local": "1.0.0",
"koa-bodyparser": "4.3.0",
"lodash": "4.17.20",
"del": "6.0.0",
"gulp": "4.0.2",
"gulp-env": "0.4.0",
"gulp-eslint": "6.0.0",
"gulp-load-plugins": "2.0.6",
"gulp-open": "3.0.1",
"gulp-replace": "1.0.0",
"gulp-babel": "8.0.0",
"@babel/core": "7.12.13",
"babel-eslint": "10.1.0",
"@babel/plugin-proposal-decorators": "7.12.13"
}
}