-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.83 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@barelyreaper/conch",
"version": "1.2.0",
"description": "micro library for batch running promises",
"keywords": [
"batch promise",
"promises",
"concurrency",
"batch"
],
"homepage": "https://github.com/barelyhuman/conch",
"bugs": {
"url": "https://github.com/barelyhuman/conch/issues"
},
"repository": "git@github.com:barelyhuman/conch",
"license": "MIT",
"author": "Reaper<ahoy@barelyhuman.dev>",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.js --format cjs,esm --clean --dts --target=node12 --minify",
"dev": "npm run build -- --watch",
"fix": "prettier --write .;eslint --fix .",
"prepare": "npm run build",
"prepublishOnly": "rm -rf dist; npm run build; pnpm run size;",
"release": "bumpp --commit --push --tag && pnpm publish",
"size": "sizesnap",
"test": "uvu -r esm tests"
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@arkweid/lefthook": "^0.7.7",
"@barelyhuman/prettier-config": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"bumpp": "^7.1.1",
"eslint": "^8.17.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"esm": "^3.2.25",
"prettier": "^2.5.1",
"sizesnap": "^0.1.1",
"tsup": "^5.11.13",
"typescript": "^4.5.5",
"uvu": "^0.5.3"
},
"packageManager": "pnpm@6.32.10",
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
},
"sizesnap": {
"files": [
"./dist/*"
]
}
}