forked from benderjs/browser-launcher2
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
94 lines (94 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@james-proxy/james-browser-launcher",
"version": "1.3.4",
"description": "Detect, launch and stop browser versions",
"main": "index.js",
"scripts": {
"lint": "eslint ./example ./lib",
"lint-fix": "npm run lint -- --fix",
"test": "ava"
},
"directories": {
"example": "example",
"res": "res"
},
"dependencies": {
"headless": "^1.0.0",
"lodash.assign": "^4.0.9",
"lodash.omit": "^4.3.0",
"lodash.pick": "^4.2.1",
"mkdirp": "^0.5.0",
"osenv": "^0.1.0",
"rimraf": "~2.6.1",
"simple-plist": "^0.3.0",
"uid": "0.0.2",
"win-detect-browsers": "1.0.2"
},
"repository": {
"type": "git",
"url": "git://github.com/james-proxy/james-browser-launcher.git"
},
"homepage": "https://github.com/james-proxy/james-browser-launcher",
"keywords": [
"browser",
"headless",
"phantom",
"chrome",
"firefox",
"chromium",
"safari",
"ie",
"opera",
"osx",
"windows"
],
"author": "James Halliday <[email protected]> (http://substack.net)",
"contributors": [
"CKSource (http://cksource.com/)",
"benderjs",
"mitchhentges"
],
"license": "MIT",
"engine": {
"node": ">=0.8"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.7.0"
},
"ava": {
"failFast": true,
"files": [
"test/**/*.js"
]
},
"eslintConfig": {
"extends": "airbnb-base/legacy",
"rules": {
"no-console": 0,
"comma-dangle": 0,
"consistent-return": 0,
"func-names": 0,
"linebreak-style": 0,
"max-len": [
"error",
120
],
"no-continue": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-plusplus": 0,
"quote-props": 0,
"valid-jsdoc": [
"error",
{
"requireReturn": false
}
],
"vars-on-top": 0
},
"globals": {}
}
}