-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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": "romka",
"version": "0.0.4",
"type": "module",
"description": "Modest api-first approach framework",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:ci": "jest --ci --coverage",
"lint": "eslint \"src/**/*.ts\"",
"release": "standard-version && git push --follow-tags origin main && npm publish",
"lint:diff": "lint-staged"
},
"repository": {
"type": "git",
"url": "[email protected]:zolotyh/romka.git"
},
"keywords": [
"openapi",
"typescript",
"oa3",
"api-first"
],
"author": "Aleksei Zolotykh",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@commitlint/travis-cli": "^16.2.4",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"standard-version": "^9.3.2",
"ts-jest": "^28.0.2",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.{js,ts,tsx, jsx}": [
"eslint --quiet --fix"
],
"*.{json,md,html,js,jsx,ts,tsx}": [
"prettier --write"
]
}
}