-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.82 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.82 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
{
"version": "1.0.0",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"directories": {
"doc": "docs",
"test": "test"
},
"engines": {
"node": ">=20.11.0",
"npm": ">=10.2.4"
},
"scripts": {
"build": "tsc",
"build:remove": "rm -rf dist",
"ci:all": "npm ci && npm run prettier && npm run eslint && npm run commitlint && npm test && npm publish --dry-run && npm run docs:build && npm run coverage",
"commitlint": "commitlint --verbose --from=$( git rev-list --max-parents=0 $( git rev-parse --abbrev-ref HEAD ) )",
"coverage": "c8 npm test",
"docs:build": "typedoc",
"eslint": "eslint --ext .ts ./",
"eslint:fix": "npm run eslint -- --fix",
"install:clean": "npm install",
"postbuild": "prettier -c -w dist",
"postcoverage": "c8 report",
"postdocs:build": "prettier -c -w docs",
"postpublish": "npm run build:remove",
"prebuild": "npm run build:remove",
"preinstall:clean": "rm -rf node_modules package-lock.json",
"prepare": "husky",
"prepublishOnly": "npm run build",
"prettier": "prettier -c .",
"prettier:write": "prettier -c -w .",
"preversion": "npm run docs:build",
"test": "mocha"
},
"license": "AGPL-3.0-only",
"devDependencies": {
"@binden/commitlint-config": "^3.0.0",
"@binden/semantic-release-config": "^3.0.4",
"@binden/tsconfig": "^2.0.0",
"@types/mocha": "^10.0.10",
"c8": "^10.1.3",
"eslint-config-binden-ts": "^5.0.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.7",
"mocha": "^11.1.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typedoc": "^0.28.14"
},
"publishConfig": {
"access": "public"
},
"funding": {
"type": "Coinbase Commerce",
"url": "https://commerce.coinbase.com/checkout/eddfb0f7-20e7-4e0d-8e04-232bbdf0b397"
}
}