-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
68 lines (68 loc) · 2.16 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
{
"name": "@mayajs/core",
"version": "0.6.3",
"description": "MayaJS is designed for simplicity and ease of use for beginners. It is built using [Typescript](https://www.typescriptlang.org/) to take advantage of strong type checking and at the same time preserving support for pure Javascript. It also has support for [MongoDb](https://www.mongodb.com/) and SQL databases. It has its own routing library and don't needed a third party routing library to run under the hood.",
"main": "lib/index.js",
"files": [
"LICENSE",
"README.md",
"decorators",
"modules",
"index.js",
"**.d.ts"
],
"scripts": {
"test": "jest",
"tgz": "rimraf *.tgz",
"package": "node ./scripts/clean-package.js",
"prestart": "npm run clean && npm run tgz",
"start": "rimraf lib && tsc -w",
"prepack": "npm run clean && npm run package && tsc --outDir .",
"postpublish": "npm run clean",
"clean:folders": "rimraf decorators && rimraf di && rimraf modules && rimraf core && rimraf interfaces && rimraf types && rimraf utils && rimraf exceptions",
"clean:files": "rimraf index.js && rimraf index.d.ts && rimraf core.js && rimraf core.d.ts",
"clean": "npm run clean:files && npm run clean:folders",
"release": "semantic-release --branches main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mayajs/maya.git"
},
"keywords": [
"nodejs",
"server",
"nodejs-server",
"express",
"typescript",
"decorators",
"rest",
"api",
"rest-api",
"ioc",
"mongoose"
],
"author": "Mark Anthony C. Ignacio",
"license": "MIT",
"bugs": {
"url": "https://github.com/mayajs/maya/issues"
},
"homepage": "https://github.com/mayajs/maya#readme",
"prettier": {
"singleQuote": false,
"printWidth": 160,
"arrowParens": "avoid",
"trailingComma": "es5"
},
"devDependencies": {
"@mayajs/router": "^0.7.4",
"@types/jest": "^25.1.4",
"@types/jsonwebtoken": "^8.5.6",
"jest": "^28.0.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.1.2"
}
}