This repository has been archived by the owner on Nov 4, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.1 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
{
"name": "@jsenv/cancellation",
"version": "3.0.0",
"description": "Make async function cancellable",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jsenv/jsenv-cancellation"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.0.0"
},
"type": "module",
"exports": {
".": {
"require": "./dist/commonjs/jsenv_cancellation.cjs",
"browser": "./main.browser.js",
"node": "./main.node.js",
"import": "./main.node.js"
},
"./*": "./*"
},
"main": "dist/commonjs/jsenv_cancellation.cjs",
"files": [
"/dist/",
"/src/",
"/main.browser.js",
"/main.node.js",
"/main.shared.js"
],
"scripts": {
"test": "node ./script/test/test.js",
"test-with-coverage": "npm run test -- --coverage",
"eslint-check": "node ./node_modules/eslint/bin/eslint.js .",
"prettier-format": "node --no-warnings ./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",
"build": "node --experimental-import-meta-resolve ./script/build/build.js",
"generate-import-map": "node ./script/generate-import-map/generate-import-map.js",
"dist": "npm run build",
"postinstall": "npm run generate-import-map",
"prepublishOnly": "node ./script/transform-package/remove-postinstall.js && npm run dist",
"postpublish": "node ./script/transform-package/restore-postinstall.js"
},
"dependencies": {},
"devDependencies": {
"@jsenv/assert": "2.2.5",
"@jsenv/core": "19.0.1",
"@jsenv/codecov-upload": "3.5.0",
"@jsenv/eslint-config": "15.0.1",
"@jsenv/github-release-package": "1.2.3",
"@jsenv/importmap-eslint-resolver": "5.0.0",
"@jsenv/node-module-import-map": "13.6.1",
"@jsenv/node-signals": "2.0.1",
"@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"
}
}