-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 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
{
"name": "piupiu",
"version": "0.2.2",
"description": "piupiu - JavaScript utilities functions that got your back",
"author": {
"name": "Thomas Brodusch",
"url": "https://github.com/thomasbrodusch"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"lint": "yarn eslint .",
"test": "vitest --config vitest.config.ts",
"coverage": "vitest run --coverage",
"preview-doc": "docsify serve docs",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"license": "MIT",
"keywords": [
"library",
"utils",
"validator",
"transformer",
"sanitizer",
"randomizer",
"toolbox"
],
"repository": {
"type": "git",
"url": "https://github.com/thomasbrodusch/piupiu.git"
},
"homepage": "https://github.com/thomasbrodusch/piupiu",
"bugs": {
"url": "https://github.com/thomasbrodusch/piupiu/issues"
},
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-typescript": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@vitest/coverage-c8": "^0.25.8",
"docsify-cli": "^4.4.4",
"eslint": "^8.30.0",
"husky": "^8.0.2",
"prettier": "2.8.1",
"rollup": "^3.7.5",
"rollup-plugin-dts": "^5.1.0",
"rollup-plugin-esbuild": "^5.0.0",
"standard-version": "^9.5.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vitest": "^0.26.2",
"vitest-fail-on-console": "^0.1.0"
},
"gitHooks": {
"pre-commit": "yarn lint",
"commit-msg": ".git/COMMIT_EDITMSG | yarn commitlint --verbose"
}
}