This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.73 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
{
"name": "@jsenv/codecov-upload",
"version": "3.5.0",
"description": "Upload coverage to codecov.io during a github workflow.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jsenv/jsenv-codecov-upload"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"import": "./index.js"
}
},
"module": "index.js",
"files": [
"/src/",
"/index.js"
],
"scripts": {
"test": "node --unhandled-rejections=strict ./script/test/test.js",
"test-with-coverage": "node ./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 ./script/upload-coverage/upload-coverage.js",
"generate-import-map": "node ./script/generate-import-map/generate-import-map.js",
"postinstall": "npm run generate-import-map",
"prepublishOnly": "node ./script/transform-package/remove-postinstall.js",
"postpublish": "node ./script/transform-package/restore-postinstall.js"
},
"dependencies": {
"@jsenv/util": "4.1.1",
"codecov": "3.8.3"
},
"devDependencies": {
"@jsenv/assert": "2.2.5",
"@jsenv/core": "19.0.1",
"@jsenv/eslint-config": "15.0.1",
"@jsenv/github-release-package": "1.2.3",
"@jsenv/node-module-import-map": "13.6.1",
"@jsenv/importmap-eslint-resolver": "5.0.0",
"@jsenv/package-publish": "1.6.2",
"@jsenv/prettier-check-project": "5.6.1",
"eslint": "7.31.0",
"eslint-plugin-import": "2.23.4",
"prettier": "2.3.2"
}
}