-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.49 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "common-stuff",
"version": "1.11.1",
"description": "Collection of common helpers and utils for both JavaScript and NodeJS with TypeScript support",
"keywords": [
"common stuff",
"utility",
"javascript",
"typescript",
"functional",
"library",
"list",
"object",
"string",
"array",
"es6",
"helper",
"merge",
"sort",
"lodash",
"isomorphic"
],
"type": "module",
"types": "./dist/index.d.ts",
"source": "src/index.ts",
"main": "./dist/common-stuff.cjs",
"module": "./dist/common-stuff.module.js",
"umd:main": "./dist/common-stuff.umd.js",
"unpkg": "./dist/common-stuff.umd.js",
"exports": {
"types": "./dist/index.d.ts",
"browser": "./dist/common-stuff.module.js",
"umd": "./dist/common-stuff.umd.js",
"import": "./dist/common-stuff.mjs",
"require": "./dist/common-stuff.cjs"
},
"scripts": {
"test": "jest spec",
"build": "microbundle && typedoc src/index.ts",
"prettify": "prettier --write \"{src,spec}/**/*.ts\""
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KiraLT/common-stuff.git"
},
"author": "KiraLT",
"license": "MIT",
"bugs": {
"url": "https://github.com/KiraLT/common-stuff/issues"
},
"homepage": "https://github.com/KiraLT/common-stuff#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"typedoc": "^0.26.5",
"typescript": "5.5.4"
},
"jest": {
"preset": "ts-jest"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}