forked from biggora/express-useragent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "@trulysinclair/parse-useragent",
"description": "useragent parser library for Node.js, ported from express-useragent",
"version": "1.0.15",
"homepage": "https://github.com/trulysinclair/parse-useragent/",
"repository": {
"type": "git",
"url": "git://github.com/trulysinclair/parse-useragent.git"
},
"license": "MIT",
"author": {
"name": "Sinclair",
"email": "[email protected]",
"url": "https://github.com/trulysinclair"
},
"keywords": [
"useragent",
"connect",
"express",
"express-useragent",
"middleware"
],
"main": "./index.js",
"scripts": {
"test": "nodeunit test/tests.js",
"example:express": "node test/server.js",
"example:http": "node test/http.js",
"example:simple": "node test/simple.js",
"build": "tsc",
"lint": "dprint check"
},
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=4.5"
},
"devDependencies": {
"bower": "*",
"dprint": "^0.39.1",
"express": ">= 4.16.4",
"grunt": "^1.2.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-uglify": "^1.0.1",
"jshint": "*",
"load-grunt-tasks": "^3.2.0",
"nodeunit": "^0.11.3",
"turbo": "^1.10.9",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}