-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.94 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
{
"name": "async-tasks-runner",
"version": "1.0.1",
"description": "Run tasks in parallel, serial & pipeline.",
"repository": "ms-fadaei/async-tasks-runner",
"license": "MIT",
"keywords": [
"async",
"task",
"parallel",
"serial",
"pipeline"
],
"author": {
"name": "Mohammad Saleh Fadaei",
"email": "[email protected]",
"url": "https://twitter.com/ms_fadaei"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./helpers": {
"import": "./dist/helpers.mjs",
"require": "./dist/helpers.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"prepack": "yarn build",
"lint": "eslint --ext .ts,mjs --ignore-path .gitignore .",
"play": "jiti playground/index.ts",
"release": "yarn test && npx standard-version && git push --follow-tags && npm publish",
"test": "yarn build && mocha ./test/*.test.*"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.test.mjs": "eslint --fix"
},
"dependencies": {},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "8.0.0",
"@types/flat": "latest",
"@types/mocha": "9.1.0",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"husky": "7.0.4",
"jiti": "latest",
"lint-staged": "12.3.1",
"mocha": "9.2.0",
"prettier": "2.5.1",
"standard-version": "latest",
"typescript": "latest",
"unbuild": "latest"
}
}