-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.87 KB
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
{
"name": "koa-useragent",
"description": "Koa.js middleware for useragent detection",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "ava",
"lint": "eslint ./**/*.ts --fix",
"build": "npm run clean && tsc -p tsconfig.json",
"clean": "rimraf ./dist",
"format": "prettier --write \"src/**/*.ts\" \"dist/**/*.js\" \"test/**/*.ts\"",
"ci": "npm run build && npm test",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g './commitlint.js'"
}
},
"keywords": [
"koa",
"middleware",
"useragent"
],
"author": "Boris Ryabov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rvboris/koa-useragent.git"
},
"ava": {
"files": [
"./test/**/*.ts"
],
"require": [
"ts-node/register"
],
"extensions": [
"ts"
]
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/express-useragent": "^1.0.2",
"@types/koa": "^2.13.4",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"ava": "^4.3.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"koa": "^2.13.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"supertest": "^6.2.4",
"ts-node": "^10.8.2",
"tslint": "^6.1.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=7.6.0"
},
"version": "0.0.0-development",
"dependencies": {
"express-useragent": "^1.0.15"
}
}