-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
56
57
58
{
"name": "@talesoft/dbal",
"description": "A DBAL with a .NET Entity Framework inspired query syntax",
"keywords": [
"dbal",
"mysql"
],
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/Talesoft/dbal-js",
"license": "MIT",
"readme": "https://github.com/Talesoft/dbal-js/blob/master/README.md",
"repository": {
"url": "https://github.com/Talesoft/dbal-js",
"type": "git"
},
"author": {
"name": "Torben Köhn",
"email": "t.koehn@outlook.com",
"url": "https://talesoft.codes"
},
"contributors": [],
"bugs": {
"url": "https://github.com/Talesoft/dbal-js/issues",
"email": "t.koehn@outlook.com"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "tslint 'src/**/*.ts'",
"lint:fix": "tslint 'src/**/*.ts' --fix"
},
"dependencies": {
"esprima": "^4.0.1",
"estree-walker": "^0.8.1",
"to-ast": "^1.0.0",
"url-parse": "^1.4.7"
},
"peerDependencies": {
"mysql": "^2.17.1"
},
"devDependencies": {
"@types/esprima": "^4.0.2",
"@types/mysql": "^2.15.7",
"@types/url-parse": "^1.4.3",
"@types/jest": "^24.0.18",
"@types/jest-each": "^0.3.4",
"jest": "^24.9.0",
"jest-each": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.6.3"
}
}