-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 996 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
32
33
34
35
36
37
38
{
"version": "0.1.6",
"name": "configurable-http-proxy-redis-backend",
"description": "Redis Backend for Jupyter's Configurable Proxy",
"author": "Globo.com",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/globocom/configurable-http-proxy-redis-backend.git"
},
"dependencies": {
"ioredis": "^3.2.1",
"normalize-url": "^1.9.1"
},
"devDependencies": {
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1"
},
"engines": {
"node": ">= 6.11.1"
},
"engineStrict": true,
"main": "lib/index.js",
"files": [
"lib/index.js",
"lib/sentinel.js"
],
"scripts": {
"lint": "eslint lib/",
"test": "npm run lint && jest --verbose --no-cache --forceExit",
"watch": "jest --verbose --no-cache --watchAll"
}
}