forked from adonisjs/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
157 lines (157 loc) · 3.64 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "@adonisjs/core",
"version": "5.0.4-preview-rc-2.1",
"description": "Core of AdonisJS",
"main": "build/providers/AppProvider.js",
"files": [
"build/adonis-typings",
"build/commands",
"build/templates",
"build/providers",
"build/src",
"build/instructions.js",
"build/standalone.js",
"build/standalone.d.ts"
],
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test": "node japaFile.js",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc && copyfiles templates/**/* templates/* build",
"build": "npm run compile",
"commit": "git-cz",
"release": "np",
"version": "npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json adonisjs/core"
},
"types": "./build/adonis-typings/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/core.git"
},
"keywords": [
"adonisjs",
"framework",
"mvc"
],
"author": "virk,adonisjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/adonisjs/core/issues"
},
"homepage": "https://github.com/adonisjs/core#readme",
"devDependencies": {
"@adonisjs/assembler": "^3.0.6",
"@adonisjs/mrm-preset": "^2.4.0",
"@adonisjs/repl": "^1.1.5",
"@adonisjs/require-ts": "^1.1.0",
"@adonisjs/sink": "^4.2.0",
"@poppinss/dev-utils": "^1.0.11",
"@types/node": "^14.14.10",
"@types/supertest": "^2.0.10",
"clear-module": "^4.1.1",
"commitizen": "^4.2.2",
"copyfiles": "^2.4.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^3.0.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-adonis": "^1.0.15",
"eslint-plugin-prettier": "^3.1.4",
"github-label-sync": "^2.0.0",
"husky": "^4.3.0",
"japa": "^3.1.1",
"mrm": "^2.5.13",
"np": "^7.0.0",
"npm-audit-html": "^1.5.0",
"prettier": "^2.2.0",
"reflect-metadata": "^0.1.13",
"strip-ansi": "^6.0.0",
"supertest": "^6.0.1",
"test-console": "^1.1.0",
"typescript": "^4.1.2",
"youch": "^2.1.1",
"youch-terminal": "^1.0.1"
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"husky": {
"hooks": {
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js",
"pre-commit": "npm audit --production --json | ./node_modules/.bin/npm-audit-html && git add npm-audit.html"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@adonisjs/ace": "^8.0.0",
"@adonisjs/application": "^3.0.21",
"@adonisjs/bodyparser": "^5.0.7",
"@adonisjs/encryption": "^3.0.7",
"@adonisjs/events": "^5.0.6",
"@adonisjs/hash": "^6.0.7",
"@adonisjs/http-server": "^4.0.9",
"@adonisjs/validator": "^8.2.0",
"@poppinss/cliui": "^2.0.2",
"@poppinss/utils": "^2.5.9",
"serve-static": "^1.14.1"
},
"np": {
"contents": ".",
"anyBranch": false
},
"adonisjs": {
"instructions": "./build/instructions.js",
"templates": {
"basePath": "./build/templates",
"config": [
{
"src": "config/bodyparser.txt",
"dest": "bodyparser"
},
{
"src": "config/cors.txt",
"dest": "cors"
},
{
"src": "config/hash.txt",
"dest": "hash"
}
],
"contracts": [
{
"src": "contracts/events.txt",
"dest": "events"
},
{
"src": "contracts/hash.txt",
"dest": "hash"
},
{
"src": "contracts/env.txt",
"dest": "env"
}
]
},
"commands": [
"@adonisjs/core/build/commands"
],
"types": "@adonisjs/core",
"providers": [
"@adonisjs/core"
]
}
}