-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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
{
"name": "@under_koen/bsm",
"version": "1.5.0",
"description": "BSM (Basic Script Manager) is a useful tool that enables you to create clear and concise scripts without cluttering your `package.json` file.",
"license": "MIT",
"author": "Koen van Staveren <koen@underkoen.nl>",
"homepage": "https://github.com/UnderKoen/bsm#readme",
"repository": {
"type": "git",
"url": "https://github.com/UnderKoen/bsm.git"
},
"bugs": {
"url": "https://github.com/UnderKoen/bsm/issues"
},
"main": "dist/index.js",
"bin": {
"bsm": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bsm",
"build:dev": "bsm",
"build:prod": "bsm",
"build:watch": "bsm",
"lint": "bsm",
"prettier": "bsm",
"prepublishOnly": "bsm build.prod",
"test": "bsm",
"test:cov": "bsm test.cov"
},
"devDependencies": {
"@inquirer/core": "^6.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.13",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@under_koen/bsm": "^1.4.0",
"c8": "^9.1.0",
"ci-info": "^4.0.0",
"cpy-cli": "^5.0.0",
"defu": "^6.1.4",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"minimist": "^1.2.8",
"prettier": "^3.2.4",
"prettier-package-json": "^2.8.0",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.0",
"sinon": "^17.0.1",
"tsm": "^2.3.0",
"typescript": "^5.3.3",
"uvu": "^0.5.6"
},
"keywords": [
"script",
"scripting"
]
}