-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "koa-hotwire",
"version": "0.0.0-development",
"description": "A hotwire implementation for the Koa.js web framework",
"main": "artifacts/build/koa-hotwire.js",
"types": "artifacts/build/koa-hotwire.d.ts",
"repository": "https://github.com/akatechis/koa-hotwire",
"author": "Alexandros Katechis",
"license": "MIT",
"files": [
"artifacts/build/*"
],
"scripts": {
"lint": "eslint .",
"build": "tsc --project .",
"test": "nyc mocha",
"clean": "rm -rf artifacts koa-hotwire-*.tgz",
"prepack": "yarn clean && yarn build",
"release": "semantic-release",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/changelog": "^5.0.1",
"@types/chai": "^4.2.18",
"@types/consolidate": "^0.14.0",
"@types/koa": "^2.13.3",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chai": "^4.3.4",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"hogan": "^1.0.2",
"husky": "^6.0.0",
"koa": "^2.13.1",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"semantic-release": "^17.4.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"peerDependencies": {
"koa": "^2.13.0"
},
"dependencies": {
"consolidate": "^0.16.0"
}
}