-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.03 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
{
"name": "@smallprod/models",
"version": "5.0.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "Model library",
"keywords": [
"SmallProd",
"Model",
"Postgres",
"MariaDb",
"MySQL",
"OracleDB",
"MSSql",
"Migration",
"ORM",
"Entity"
],
"homepage": "",
"bugs": {},
"author": "SmallProd Team",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc --project tsconfig.json",
"run": "node dist/index.js",
"db:migrate": "node exemples/migration.js migrate",
"db:reset": "node exemples/migration.js reset",
"test:init": "./src/_tests/_config/init_tests.sh",
"test:before": "./src/_tests/_config/before_tests.sh",
"test:after": "./src/_tests/_config/after_tests.sh",
"test:all": "jest --config ./src/_tests/_config/jest.config.js --coverage --verbose --runInBand",
"test:all:watch": "jest --config ./src/_tests/_config/jest.config.js --coverage --verbose --runInBand --watch",
"test": "./src/_tests/_config/tests.sh"
},
"devDependencies": {
"@smallprod/models": "file:./dist",
"@types/chai": "^4.2.14",
"@types/jest": "^26.0.15",
"@types/mssql": "^6.0.5",
"@types/mysql": "^2.15.15",
"@types/oracledb": "^5.0.0",
"@types/pg": "^7.14.5",
"@types/readable-stream": "2.3.9",
"chai": "^4.2.0",
"jest": "^26.6.1",
"mssql": "^6.2.3",
"mysql": "^2.18.1",
"oracledb": "^5.0.0",
"pg": "^8.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.7",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.5"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ApierBySmallProd/NodeModels.git"
}
}