-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.65 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"author": "Anton Trofimenko",
"bugs": {
"url": "https://github.com/await-of/of/issues"
},
"contributors": [
{
"email": "r37r0m0d3l@protonmail.com",
"name": "Anton Trofimenko"
}
],
"dependencies": {},
"description": "Promise wrapper with some sugar",
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-private-methods": "7.14.5",
"@babel/preset-env": "7.15.6",
"@r37r0m0d3l/rollup-config-pkg": "git+https://github.com/r37r0m0d3l/rollup-config-pkg.git",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "13.0.5",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.2.1",
"npm-check": "5.9.2",
"prettier": "2.4.1",
"remark-cli": "10.0.0",
"remark-lint": "9.1.0",
"remark-preset-lint-consistent": "5.1.0",
"remark-preset-lint-markdown-style-guide": "5.1.0",
"remark-preset-lint-recommended": "6.1.0",
"rollup": "2.57.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-terser": "7.0.2"
},
"engines": {
"node": ">=12.16.3"
},
"engineStrict": false,
"exports": {
".": {
"browser": {
"import": "./dist/of.mjs",
"require": "./dist/of.cjs"
},
"node": {
"import": "./dist/of.mjs",
"require": "./dist/of.cjs"
},
"import": "./dist/of.mjs",
"require": "./dist/of.cjs",
"default": "./dist/of.js"
}
},
"files": [
"dist/of.cjs",
"dist/of.cjs.map",
"dist/of.d.ts",
"dist/of.js",
"dist/of.js.map",
"dist/of.mjs",
"dist/of.mjs.map"
],
"homepage": "https://of.js.org",
"keywords": [
"async await",
"async",
"await",
"error swallowing",
"errors handling",
"promise",
"try-catch",
"wrapper"
],
"license": "MIT",
"main": "./dist/of.cjs",
"module": "./dist/of.mjs",
"name": "@await-of/of",
"repository": {
"type": "git",
"url": "git+https://github.com/await-of/of.git"
},
"scripts": {
"build": "rollup --config rollup.config.mjs",
"build:watch": "rollup --config rollup.config.mjs --watch",
"docs:serve": "docsify serve docs",
"lint": "eslint ./src/**/*.js",
"lint:md": "remark .",
"package:pack": "npm prune --production && npm shrinkwrap",
"package:upgrade": "npx npm-check --update",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"type": "module",
"types": "./dist/of.d.ts",
"version": "2.4.10",
"optionalDependencies": {
"fsevents": "2.3.2"
}
}