This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.26 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
{
"name": "edge-supercharged",
"version": "3.1.1",
"description": "Supercharged components for Edge template engine",
"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",
"build": "npm run compile",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"commit": "git-cz",
"release": "np",
"version": "npm run build",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json edge-js/edge-supercharged"
},
"keywords": [
"edge"
],
"author": "virk",
"license": "MIT",
"devDependencies": {
"@adonisjs/mrm-preset": "^4.1.0",
"@adonisjs/require-ts": "^2.0.4",
"@poppinss/dev-utils": "^1.1.4",
"@types/node": "^15.6.1",
"del-cli": "^3.0.1",
"doctoc": "^2.0.0",
"edge.js": "^5.2.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-adonis": "^1.3.1",
"eslint-plugin-prettier": "^3.4.0",
"github-label-sync": "^2.0.0",
"husky": "^6.0.0",
"japa": "^3.1.1",
"js-stringify": "^1.0.2",
"mrm": "^3.0.2",
"np": "^7.5.0",
"prettier": "^2.3.0",
"typescript": "^4.4.0-dev.20210516"
},
"husky": {
"hooks": {
"pre-commit": "doctoc README.md --title='## Table of contents' && git add README.md",
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"main": "build/index.js",
"files": [
"build/src",
"build/index.d.ts",
"build/index.js"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"dependencies": {
"@poppinss/utils": "^3.1.3",
"slash": "^3.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edge-js/edge-supercharged.git"
},
"bugs": {
"url": "https://github.com/edge-js/edge-supercharged/issues"
},
"homepage": "https://github.com/edge-js/edge-supercharged#readme"
}