-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.27 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
44
45
46
47
48
49
50
51
{
"name": "ixc-orm",
"version": "2.3.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"description": "ORM para consumo de dados da API do sistema IXC Provedor",
"scripts": {
"dev": "nodemon --watch \"src//\" --exec \"ts-node src/index.ts\" -e ts",
"test": "jest",
"test:cov": "jest --coverage",
"build": "tsc -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fscarmo/ixc-orm.git"
},
"keywords": [
"IXCSoft API",
"IXCsoft",
"IXC API",
"IXC Provedor"
],
"author": {
"name": "Felipe S. Carmo",
"email": "fscarmo@proton.me",
"url": "https://www.fscarmo.dev.br/"
},
"bugs": {
"url": "https://github.com/fscarmo/ixc-orm/issues"
},
"dependencies": {
"dotenv": "^17.4.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-typescript": "^7.28.5",
"@jest/globals": "^30.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"babel-jest": "^30.3.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"nodemon": "^3.1.14",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}