-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.3 KB
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
{
"name": "corridore",
"version": "0.1.1",
"description": "Simple promise-based runner for tasks with chained api for abstracting varied processes into single actions",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"INFO: no test specified\" && exit 0",
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"pre": "yarn run test && yarn run build",
"patch": "yarn run pre && npm version patch",
"minor": "yarn run pre && npm version minor",
"major": "yarn run pre && npm version major",
"pub": "yarn run pre && yarn publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhazelton/corridore.git"
},
"keywords": [
"automation",
"runner",
"promise",
"async",
"batch",
"api"
],
"author": {
"name": "Aaron Hazelton",
"email": "abhazelton@gmail.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/abhazelton/corridore/issues"
},
"homepage": "https://github.com/abhazelton/corridore#readme",
"dependencies": {
"events": "^3.3.0",
"p-map": "4.0.0",
"p-reduce": "2.1.0",
"p-settle": "4.1.1",
"pify": "5.0.0"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "^15.12.5",
"@types/pify": "5.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}