-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "tsfluent",
"description": "Fluent Result Type for TypeScript",
"version": "1.5.2",
"main": "./dist/index.js",
"files": [
"dist/**/*"
],
"author": "Adedoyin Emmanuel Adeniyi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Adedoyin-Emmanuel/tsfluent.git"
},
"keywords": [
"tsfluent",
"result-type",
"result-type-ts",
"result-type-ts-fluent",
"fluent-result-ts",
"fluent-result-type-ts"
],
"homepage": "https://github.com/Adedoyin-Emmanuel/tsfluent#readme",
"bugs": {
"url": "https://github.com/Adedoyin-Emmanuel/tsfluent/issues"
},
"scripts": {
"build": "tsc",
"test": "bun test --timeout 20000 --watch --verbose",
"test:ci": "bun test --timeout 20000",
"clean": "rm -rf dist",
"prepublishOnly": "bun run clean && bun run build",
"prepare": "husky",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"bun run build"
],
"{src,tests}/**/*.ts": [
"bun test"
]
}
}