This repository has been archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 1.92 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
{
"name": "grind-http",
"version": "0.8.0-beta.4",
"description": "HTTP kernel for Grind, powered by Express",
"author": "Shaun Harrison (@shnhrrsn)",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/grindjs/framework.git"
},
"keywords": [
"grindjs",
"grind-framework",
"grind-kernel",
"express",
"http"
],
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.14.1"
},
"peerDependencies": {
"grind-framework": "^0.8.0-beta.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/register": "^7.0.0",
"ava": "^1.0.0-rc.1",
"babel-eslint": "^10.0.1",
"babel-preset-grind": "^0.8.0-beta.3",
"chokidar": "^2.0.4",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"eslint": "^5.8.0",
"eslint-config-grind": "^2.1.5",
"eslint-plugin-import-auto-name": "^1.1.0",
"express-flash": "^0.0.2",
"express-session": "^1.15.6",
"flash": "^1.1.0",
"grind-cli": "^0.8.0-beta.1",
"grind-db": "^0.8.0-beta.1",
"grind-framework": "^0.8.0-beta.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"sqlite3": "^4.0.3"
},
"engines": {
"node": ">=10.13"
},
"scripts": {
"prepack": "bin/build",
"lint": "eslint src",
"test": "bin/ava --verbose"
},
"grind": {
"commands": [
"./lib/Commands/MakeControllerCommand.js"
],
"providers": []
},
"ava": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
[
"grind",
{
"import-auto-name": {
"autoresolve": true
}
}
]
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"import-auto-name"
],
"env": {
"node": true
},
"extends": "grind",
"parserOptions": {
"sourceType": "module"
}
}
}