-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.33 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
{
"name": "better-opn",
"version": "3.0.2",
"description": "A better opn. Reuse the same tab on Chrome for 👨💻.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ExiaSR/better-opn"
},
"author": "Michael Lin <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"opn",
"open",
"opener",
"launch",
"browser"
],
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist",
"openChrome.applescript",
"package.json",
"README.md",
"yarn.lock"
],
"xo": {
"_nodeVersion": "falling back to --node-version cli argument since this is not working",
"nodeVersion": ">=10.0.0",
"space": 2,
"prettier": true,
"envs": [
"node"
]
},
"ava": {
"files": [
"tests/**/*",
"!test/host-only.js"
]
},
"scripts": {
"build": "babel src -d dist",
"_lint": "--node-version is a work around since we use v8 as target in babel anyway",
"lint": "xo --fix --node-version \">=10.0.0\"",
"test": "ava"
},
"dependencies": {
"open": "^8.0.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"ava": "^3.6.0",
"lodash.countby": "^4.6.0",
"puppeteer-core": "^8.0.0",
"xo": "^0.28.3"
}
}