-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "connection-string-parser",
"version": "1.0.4",
"description": "A generic connection string parser/formatter",
"main": "./dist/connection-string-parser.js",
"types": "./dist/connection-string-parser.d.ts",
"scripts": {
"build": "tsc --pretty",
"clean": "rimraf dist",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"prebuild": "npm run clean && npm run lint",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sindilevich/connection-string-parser.git"
},
"keywords": [
"database",
"database-connection",
"connection-string",
"parser",
"typescript",
"nodejs",
"browser"
],
"author": "Matanel Sindilevich",
"license": "MIT",
"bugs": {
"url": "https://github.com/sindilevich/connection-string-parser/issues"
},
"homepage": "https://github.com/sindilevich/connection-string-parser#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.0.0",
"prettier": "^2.0.0",
"rimraf": "^3.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"tslib": "^2.0.0"
}
}