forked from tohagan/accept-language-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 792 Bytes
/
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
{
"name": "accept-language-parser",
"version": "1.5.0",
"description": "Parse the accept-language header from a HTTP request",
"main": "index.js",
"scripts": {
"mocha": "mocha tests/",
"jshint": "jshint index.js tests/",
"test": "npm run jshint && npm run mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/opentable/accept-language-parser.git"
},
"keywords": [
"accept-language",
"i18n",
"parser"
],
"author": "Andy Royle <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/opentable/accept-language-parser/issues"
},
"homepage": "https://github.com/opentable/accept-language-parser",
"devDependencies": {
"jshint": "^2.9.4",
"mocha": "^3.4.0",
"should": "^11.0.0"
}
}