This repository has been archived by the owner on Feb 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.6 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
{
"name": "accept-language-negotiator",
"version": "1.2.1",
"description": "RFC4647 compliant Accept-Language parser for node",
"repository": {
"type": "git",
"url": "git+https://github.com/jayco/accept-language-negotiator"
},
"keywords": [
"http",
"content negotiation",
"accept",
"language",
"accept-language",
"i18n",
"internationalization",
"locale",
"localization",
"rfc4647",
"rfc2616"
],
"author": "Jason Jacob <jason.jacob1977@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/jayco/accept-language-negotiator#readme",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"test": "NODE_ENV=test mocha --require @babel/register --recursive",
"cov": "NODE_ENV=test COVERAGE=yes LOG_LEVEL=fatal istanbul cover --report html ./node_modules/.bin/_mocha -- --require @babel/register --recursive && open coverage/index.html",
"lint": "eslint ./src/ ./test/ && echo Lint OK",
"compile": "babel src --out-dir dist --source-maps true",
"compile:watch": "babel src --out-dir dist --source-maps true --watch",
"clean": "rm -rf node_modules/ && rm -rf coverage",
"pretest": "npm run lint",
"prepublish": "npm run compile"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"@babel/register": "^7.8.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"mocha": "^6.2.2"
},
"dependencies": {}
}