-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.09 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
{
"name": "topkat-utils",
"version": "1.2.105",
"type": "commonjs",
"types": "index.ts",
"main": "dist",
"private": false,
"description": "FAST AND FUNCTIONAL UTILS",
"author": "topkat",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/top-kat/utils.git"
},
"scripts": {
"build": "tsc",
"bump:major": "yarn test:ci && npm run build && node node_modules/bump-simple/bump-simple.js --major",
"bump:minor": "yarn test:ci && npm run build && node node_modules/bump-simple/bump-simple.js --minor",
"bump:patch": "yarn test:ci && npm run build && node node_modules/bump-simple/bump-simple.js --patch",
"test": "jest --watchAll",
"test:ci": "jest --ci --runInBand --maxConcurrency=1 --silent"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"bump-simple": "^1.0.0",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}