-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathpackage.json
63 lines (63 loc) · 1.39 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
{
"name": "device-uuid",
"description": "Fast browser device uuid generation library.",
"version": "1.0.5",
"homepage": "https://github.com/biggora/device-uuid/",
"repository": {
"type": "git",
"url": "git://github.com/biggora/device-uuid.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/biggora/device-uuid/blob/master/LICENSE"
}
],
"author": {
"name": "Alexey Gordeyev",
"email": "[email protected]",
"url": "https://github.com/biggora"
},
"contributors": [
{
"name": "Vitalii Onyshchenko",
"url": "https://github.com/uzer-ua"
}
],
"keywords": [
"useragent",
"browser",
"device",
"uuid"
],
"main": "./index.js",
"scripts": {
"test": "nodeunit test/browsers.js test/bots_test.js",
"express": "node test/express.js",
"http": "node test/http.js",
"build": "grunt build",
"lint": "make lint"
},
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=0.8"
},
"dependencies": {},
"devDependencies": {
"express": ">= 3.0.0",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.0",
"gulp-filesize": "0.0.6",
"gulp-filter": "^5.1.0",
"gulp-jshint": "^2.1.0",
"gulp-rename": "^1.4.0",
"gulp-rimraf": "^0.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"jshint": "^2.9.7",
"nodeunit": "*"
}
}