-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "kapsel",
"version": "0.0.0",
"description": "Data with additives in one capsule",
"main": "index.js",
"scripts": {
"build": "tsc --project build.tsconfig.json",
"lint": "eslint . --ext .ts --fix",
"prettier": "prettier --write .",
"test": "jest",
"prepare": "husky install",
"update": "npx npm-check-updates -u && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ulitcos/kapsel.git"
},
"author": "Ruslan Krokhin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ulitcos/kapsel/issues"
},
"homepage": "https://github.com/ulitcos/kapsel#readme",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "3.2.2",
"typescript": "^5.3.3"
}
}