-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 KB
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
{
"name": "@lad-tech/sqlk",
"version": "1.0.0",
"description": "Набор функций для работы с SQL",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"directories": {
"src": "src",
"test": "tests"
},
"scripts": {
"test": "jest --coverage --verbose --runInBand",
"build": "tsc",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/lad-tech/sqlk.git"
},
"keywords": [
"sql"
],
"author": "eawapownikov@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/lad-tech/sqlk/issues"
},
"homepage": "https://github.com/lad-tech/sqlk#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"semantic-release": "^19.0.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}