forked from kozhevnikov/proxymise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 939 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
39
{
"name": "proxymise",
"version": "1.0.2",
"description": "Chainable Promise Proxy",
"repository": "https://github.com/kozhevnikov/proxymise",
"author": "Ilya Kozhevnikov <git@kozhevnikov.com>",
"license": "MIT",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint .",
"test": "jest --verbose"
},
"devDependencies": {
"aws-sdk": "^2.275.1",
"chromedriver": "^2.40.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"jest": "^23.4.0",
"node-fetch": "^2.1.2",
"selenium-webdriver": "^4.0.0-alpha.1"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"plugin:jest/recommended"
],
"rules": {
"comma-dangle": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"no-use-before-define": "off"
}
}
}