-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "panahorm",
"version": "1.0.0",
"description": "A typesafe ORM that utilize arrow function in Javascript and Typescript inspired by .NET ORMs",
"main": "index.ts",
"scripts": {
"test": "mocha --require ts-node/register --exit './tests/*test.ts' './tests/**/*test.ts'",
"test-file": "mocha --require ts-node/register --exit",
"test-coverage": "nyc --reporter=text npm run test"
},
"author": "rizwardh@gmail.com",
"license": "ISC",
"dependencies": {
"astring": "^1.9.0",
"meriyah": "^4.2.0",
"object-hash": "^1.3.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/estree": "^1.0.0",
"@types/mocha": "^5.2.7",
"@types/mssql": "4.0.7",
"@types/mysql": "^2.15.5",
"@types/node": "^10.12.20",
"@types/object-hash": "^1.3.4",
"@types/pg": "^8.11.11",
"@types/sinon": "^17.0.3",
"@types/sqlite3": "3.1.3",
"axios": "^0.26.1",
"chai": "^4.3.7",
"mocha": "^9.2.2",
"mssql": "^8.0.2",
"mysql": "^2.18.1",
"nyc": "^15.1.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"sinon": "^19.0.2",
"sqlite3": "^5.0.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}