-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.19 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
{
"name": "ump",
"title": "ump",
"version": "3.5.1",
"description": "Bump without the B",
"scripts": {
"test": "npm run test:clean && npm run test:pre && npm run test:run",
"test:clean": "rm -rf ./test/testarea",
"test:pre": "npm run lint && mkdir -p \"./test/testarea\"",
"test:run": "node_modules/.bin/mocha --delay --reporter spec",
"lint": "eslint *.js bin lib test"
},
"repository": {
"type": "git",
"url": "[email protected]:kswedberg/ump.git"
},
"type": "module",
"main": "ump.js",
"bin": {
"ump": "bin/ump.js"
},
"author": {
"name": "Karl Swedberg",
"email": "[email protected]",
"url": "https://karlswedberg.com/"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@inquirer/confirm": "^5.0.0",
"@inquirer/select": "^4.0.0",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"git-config": "^0.0.7",
"glob": "^11.0.0",
"rc": "^1.2.8",
"semver": "^7.6.3",
"update-notifier": "^7.3.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"chai": "^5.1.1",
"eslint": "^9.13.0",
"eslint-config-kswedberg": "^7.1.0",
"mocha": "^10.7.3"
},
"license": "MIT"
}