forked from adonisjs/core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.41 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
{
"name": "@adonisjs/framework",
"version": "5.0.12",
"description": "Adonis framework makes it easy for you to write webapps with less code",
"main": "index.js",
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc node japaFile.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"commit": "git-cz",
"lint": "standard"
},
"standard": {
"global": [
"use"
]
},
"keywords": [
"adonis-framework",
"mvc",
"mvc-framework"
],
"author": "adonisjs",
"license": "MIT",
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/mrm-preset": "^1.0.14",
"@adonisjs/sink": "^1.0.17",
"argon2": "^0.19.3",
"clear-require": "^2.0.0",
"commitizen": "^3.0.2",
"cookie-signature": "^1.1.0",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"fs-extra": "^7.0.0",
"japa": "^2.0.5",
"mrm": "^1.2.1",
"nyc": "^13.1.0",
"pify": "^4.0.0",
"pkg-ok": "^2.3.1",
"semver": "^5.6.0",
"standard": "^12.0.1",
"supertest": "^3.3.0",
"test-console": "^1.1.0"
},
"dependencies": {
"@adonisjs/generic-exceptions": "^2.0.1",
"@adonisjs/middleware-base": "^1.0.0",
"bcryptjs": "^2.4.3",
"co-compose": "^4.0.0",
"debug": "^4.1.0",
"dotenv": "^6.1.0",
"edge.js": "^1.1.4",
"eventemitter2": "^5.0.1",
"haye": "^2.0.2",
"lodash": "^4.17.11",
"macroable": "^1.0.0",
"node-cookie": "^2.1.1",
"node-exceptions": "^3.0.0",
"node-req": "^2.1.1",
"node-res": "4.1.4",
"parseurl": "^1.3.2",
"path-to-regexp": "^2.4.0",
"require-all": "^3.0.0",
"resetable": "^1.0.3",
"serve-static": "^1.13.2",
"simple-encryptor": "^2.0.0",
"useragent": "^2.3.0",
"winston": "^3.1.0",
"youch": "^2.0.10"
},
"nyc": {
"include": [
"src",
"lib"
],
"exclude": [
"test"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/adonis-framework.git"
},
"bugs": {
"url": "https://github.com/adonisjs/adonis-framework/issues"
},
"homepage": "https://github.com/adonisjs/adonis-framework#readme",
"bin": {
"framework": "index.js"
}
}