-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
98 lines (98 loc) · 2.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
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
{
"name": "await-of",
"description": "await wrapper for easier errors handling without try-catch",
"version": "3.1.1",
"files": [
"cjs",
"esm",
"esnext"
],
"main": "cjs/index.js",
"module": "esm/index.js",
"esnext": "esnext/index.js",
"types": "cjs/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/xobotyi/await-of.git"
},
"bugs": {
"url": "https://github.com/xobotyi/await-of/issues"
},
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/xobotyi"
},
"homepage": "https://github.com/xobotyi/await-of",
"author": {
"name": "Anton Zinovyev",
"url": "https://github.com/xobotyi",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"async",
"await",
"errors handling",
"promise",
"wrapper",
"node",
"browser"
],
"devDependencies": {
"@commitlint/config-conventional": "^16.0.0",
"@jamesacarr/eslint-formatter-github-actions": "^0.1.0",
"@jamesacarr/jest-reporter-github-actions": "^0.0.4",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^8.0.0",
"@types/jest": "^27.0.0",
"@xobotyi/eslint-config": "^2.2.0",
"@xobotyi/preset-typescript": "^1.0.0",
"commitlint": "^16.0.0",
"concurrently": "^6.2.0",
"eslint": "^7.31.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"yarn": "^1.22.10"
},
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"prepare": "husky install",
"build": "yarn build:cleanup && concurrently yarn:build:cjs yarn:build:esm yarn:build:esnext --kill-others-on-fail",
"build:cleanup": "rimraf ./cjs ./esm ./esnext ./types",
"build:cjs": "tsc -p ./tsconfig.build.json --module CommonJS --target ES5 --outDir ./cjs",
"build:esm": "tsc -p ./tsconfig.build.json --module ES6 --target ES5 --outDir ./esm",
"build:esnext": "tsc -p ./tsconfig.build.json --module ESNext --target ESNext --outDir ./esnext",
"lint": "eslint ./{src,tests}/**/*.ts ./*.{ts,js}",
"lint:fix": "yarn lint --fix",
"test": "jest --coverage=false",
"test:coverage": "jest --coverage"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}