-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.84 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
73
74
75
76
77
78
{
"name": "@monagoio/monagojs",
"version": "1.0.17",
"description": "SDK for monago platform, help developers to create and consume apis",
"keywords": [
"api",
"cms",
"rest",
"dashboard",
"erp",
"api-generator",
"headless-cms",
"monagojs",
"mysql",
"graphql",
"postgres",
"mongodb"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"axios": "^0.27.2"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/preset-env": "^7.18.0",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.5.0",
"barreler": "^0.0.5",
"codecov": "^3.8.3",
"dotenv": "^16.0.3",
"jest": "^28.1.0",
"jest-environment-jsdom": "^29.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"tsc": "rm -rf dist/ && tsc",
"ts": "rm -rf dist/ && tsc -w",
"dev": "nodemon dist/app.js",
"clean": "rimraf dist",
"start": "ts-node-dev --inspect=9227 src/app.ts --no-cache",
"tscBuild": "tsc --build",
"index": "barreler -m multifile-index ./src && rm index.ts",
"build": "npm run clean && npm run index && npm run tscBuild",
"prepare": "npm run build",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
],
"modulePathIgnorePatterns": [
"/dist/"
],
"testTimeout": 60000
},
"homepage": "https://github.com/monagoio/monagojs#readme",
"author": "Monago Technology",
"bugs": {
"url": "https://github.com/monagoio/monagojs/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/monagoio/monagojs.git"
},
"license": "MIT"
}