-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "@doeixd/named-args",
"version": "0.0.4",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"license": "MIT",
"keywords": [
"named arguments",
"named args",
"keyword args",
"keyword arguments",
"pridepack"
],
"devDependencies": {
"@types/node": "^20.14.9",
"pridepack": "2.6.1",
"standard-version": "^9.5.0",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"scripts": {
"release": "standard-version && git push --follow-tags origin main",
"release:patch": "npm version patch && git push --follow-tags origin main",
"release:minor": "npm version minor && git push --follow-tags origin main",
"release:major": "npm version major && git push --follow-tags origin main",
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest"
},
"private": false,
"description": "Psudo named arguments for JavaScript functions",
"repository": {
"url": "https://github.com/doeixd/named-arguments.git",
"type": "git"
},
"homepage": "https://github.com/doeixd/named-arguments#readme",
"bugs": {
"url": "https://github.com/doeixd/named-arguments/issues"
},
"author": "Patrick Glenn",
"publishConfig": {
"access": "public"
}
}