-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.44 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
{
"name": "setup-browser-env",
"version": "0.2.2",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "xo",
"test": "nyc ava",
"release": "standard-version",
"postinstall": "postinstaller",
"preuninstall": "postinstaller"
},
"keywords": [
"browser-env",
"ava",
"mocha",
"test",
"testing",
"browser",
"browser testing",
"postinstaller"
],
"author": "Andreas Pizsa <hopster@gmail.com> (https://github.com/AndreasPizsa)",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"ava": "1.0.1",
"coveralls": "^3.0.2",
"husky": "^1.2.0",
"nyc": "^13.1.0",
"standard-version": "^5.0.0",
"xo": "^0.23.0"
},
"xo": {
"semicolon": false,
"space": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard-version": {
"scripts": {
"prerelease": "npm test"
}
},
"dependencies": {
"browser-env": "^3.2.5",
"cosmiconfig": "^5.0.7",
"postinstaller": "0.0.4"
},
"postinstaller": {
"if has devDependencies.ava": {
"ava.require[]": "setup-browser-env"
},
"browser-env": {
"globals": [
"window",
"document"
],
"jsdom": {
"userAgent": "My User Agent"
}
}
}
}