forked from edge-js/edge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.1 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
{
"name": "edge",
"version": "1.0.0",
"description": "Template engine",
"main": "index.js",
"typings": "./build/src/Edge/index.d.ts",
"scripts": {
"pretest": "npm run lint",
"test": "nyc node japaFile.js",
"posttest": "npm run coverage",
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"commit": "git-cz",
"prepublishOnly": "npm run build",
"test:win": "./node_modules/japa-cli/index.js",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poppinss/edge.git"
},
"author": "virk",
"license": "MIT",
"bugs": {
"url": "https://github.com/poppinss/edge/issues"
},
"homepage": "https://github.com/poppinss/edge#readme",
"devDependencies": {
"@adonisjs/mrm-preset": "^1.0.14",
"@types/node": "^10.12.3",
"commitizen": "^3.0.4",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"dedent": "^0.7.0",
"del-cli": "^1.1.0",
"fs-extra": "^7.0.1",
"japa": "^2.0.6",
"japa-cli": "^1.0.1",
"mrm": "^1.2.1",
"nyc": "^13.1.0",
"pkg-ok": "^2.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.13.0",
"typedoc-clarity-theme": "^1.1.0",
"typedoc-plugin-external-module-name": "^1.1.3",
"typedoc-plugin-single-line-tags": "^1.0.0",
"typescript": "^3.1.6",
"yorkie": "^2.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"dependencies": {
"debug": "^4.1.0",
"edge-error": "^1.0.1",
"edge-parser": "^2.0.3",
"he": "^1.2.0",
"lodash": "^4.17.11",
"macroable": "^2.0.0",
"node-exceptions": "^4.0.1",
"require-uncached": "^2.0.0"
},
"gitHooks": {
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js"
}
}