-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.82 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "database-builder",
"version": "0.6.7",
"description": "Library to assist in creating and maintaining SQL commands.",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "tsc && ts-mocha src/test/**/*.spec.ts",
"test-grep": "npm run test -- --grep",
"test-single": "npm run test-grep -- Mapper --debug-brk",
"lint": "tslint -p tsconfig.json",
"build": "tsc",
"publish-npm": "tsc && npm publish",
"publish-npm-alpha": "tsc && npm publish --tag alpha",
"pack": "cd dist/ && npm pack ../",
"ts-mocha": "ts-mocha"
},
"dependencies": {
"lambda-expression": ">=0.1.4",
"lodash": ">=4.17.21",
"moment": ">=2.29.1",
"reflect-metadata": ">=0.1.13",
"rxjs": ">=7.5.2",
"uuid": ">=8.3.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.0.0",
"@types/sinon": "^10.0.6",
"@types/sqlite3": "^3.1.8",
"@types/uuid": "^8.3.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.1.4",
"sinon": "^12.0.1",
"sqlite3": "^5.0.2",
"ts-mocha": "^9.0.2",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^4.6.3"
},
"keywords": [
"orm",
"database",
"builder",
"database-builder",
"sqlite",
"sql",
"sql-builder",
"crud",
"insert",
"update",
"delete",
"select",
"ddl",
"create-table",
"drop-table",
"alter-table"
],
"author": "Fernando Leal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fernandocode/database-builder.git"
},
"bugs": {
"url": "https://github.com/fernandocode/database-builder/issues"
},
"homepage": "https://github.com/fernandocode/database-builder#readme"
}