This repository was archived by the owner on Jan 25, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.46 KB
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
{
"name": "@jsenv/browser-detection",
"version": "1.0.0",
"description": "Browser detection script.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jsenv/jsenv-browser-detection"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"engines": {
"node": ">=12.0.0"
},
"type": "module",
"exports": {
".": {
"import": "./index.js"
}
},
"main": "dist/esmodule/main.js",
"files": [
"/dist/",
"/src/",
"/index.js"
],
"scripts": {
"start-exploring": "node --no-warnings ./script/start-exploring/start-exploring.js",
"test": "node --no-warnings --unhandled-rejections=strict ./script/test/test.js",
"test-with-coverage": "node --no-warnings ./script/test/test.js --coverage",
"eslint-check": "node ./node_modules/eslint/bin/eslint.js .",
"prettier-format": "node ./script/prettier-format/prettier-format.js",
"prettier-format-stage": "npm run prettier-format -- --staged",
"prettier-check": "npm run prettier-format -- --dry-run",
"upload-coverage": "node --no-warnings ./script/upload-coverage/upload-coverage.js",
"generate-esmodule-bundle": "node --no-warnings ./script/generate-esmodule-bundle/generate-esmodule-bundle.js",
"generate-global-bundle": "node --no-warnings ./script/generate-global-bundle/generate-global-bundle.js",
"generate-import-map": "node --no-warnings ./script/generate-import-map/generate-import-map.js",
"install-git-hooks": "node ./script/install-git-hooks/install-git-hooks.js",
"dist": "npm run generate-esmodule-bundle && npm run generate-global-bundle",
"postinstall": "npm run generate-import-map && npm run install-git-hooks",
"prepublishOnly": "node ./script/transform-package/remove-postinstall.js && npm run dist",
"postpublish": "node ./script/transform-package/restore-postinstall.js"
},
"dependencies": {},
"devDependencies": {
"@jsenv/assert": "2.1.0",
"@jsenv/codecov-upload": "3.4.1",
"@jsenv/core": "13.1.4",
"@jsenv/eslint-config": "12.4.1",
"@jsenv/git-hooks": "1.3.3",
"@jsenv/github-release-package": "1.2.2",
"@jsenv/node-module-import-map": "11.1.1",
"@jsenv/package-publish": "1.5.1",
"@jsenv/prettier-check-project": "5.6.0",
"babel-eslint": "11.0.0-beta.0",
"eslint": "7.1.0",
"playwright-chromium": "1.0.2",
"playwright-firefox": "1.0.2",
"playwright-webkit": "1.0.2",
"prettier": "2.0.5"
}
}