-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.69 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
{
"name": "@jsdevtools/karma-host-environment",
"version": "3.0.3",
"description": "Access host info (OS, browser version, environment variables) in browser tests",
"keywords": [
"karma",
"karma-plugin",
"karma-framework",
"test",
"testing",
"host",
"environment",
"browser",
"user agent",
"environment variables"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://jstools.dev/karma-host-environment",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/karma-host-environment.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "shx rm -rf .nyc_output coverage lib",
"lint": "eslint src test",
"build": "tsc",
"watch": "tsc --watch",
"test": "karma start --single-run && npm run lint",
"coverage": "nyc karma start --single-run",
"upgrade": "npm-check -u && npm audit fix",
"bump": "bump --tag --push --all",
"release": "npm run upgrade && npm run clean && npm run build && npm test && npm run bump"
},
"devDependencies": {
"@jsdevtools/eslint-config": "^1.0.3",
"@jsdevtools/karma-config": "^3.0.3",
"@jsdevtools/version-bump-prompt": "^6.0.0",
"@types/karma": "^5.0.0",
"@types/node": "^14.0.23",
"@types/temp": "^0.8.34",
"chai": "^4.2.0",
"eslint": "^7.4.0",
"karma": "^5.1.0",
"karma-cli": "^2.0.0",
"mocha": "^8.0.1",
"npm-check": "^5.9.0",
"nyc": "^15.0.0",
"shx": "^0.3.2",
"typescript": "^3.5.3"
},
"dependencies": {
"@jsdevtools/host-environment": "^2.0.4",
"temp": "^0.9.0"
}
}