-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.3 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.3 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
{
"version": "1.7.0",
"name": "browser-language",
"description": "grab browser language and store on cookie",
"keywords": [
"browser",
"language",
"cookie",
"i18n"
],
"preferGlobal": false,
"homepage": "https://github.com/hex7c0/browser-language",
"author": {
"name": "hex7c0",
"email": "hex7c0@gmail.com",
"url": "https://hex7c0.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/hex7c0/browser-language.git"
},
"bugs": {
"url": "https://github.com/hex7c0/browser-language/issues",
"email": "hex7c0@gmail.com"
},
"directories": {
"lib": "./min/lib",
"example": "./examples"
},
"main": "index.min.js",
"dependencies": {
"cookie-encryption": "1.7.0"
},
"devDependencies": {
"cookie-parser": "~1.4",
"express": "~4.16",
"grunt": "~1.0",
"grunt-contrib-uglify": "~3.3",
"grunt-contrib-jshint": "~1.1",
"grunt-endline": "~0.7",
"grunt-safer-regex": "~0.1",
"istanbul": "~0.4",
"mocha": "~4.1",
"supertest": "~3.0"
},
"engines": {
"node": ">=4"
},
"scripts": {
"prepare": "npm prune",
"prepublishOnly": "grunt",
"test": "mocha --bail --check-leaks",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly"
},
"license": "GPL-3.0"
}