-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "@mayajs/common",
"version": "0.6.2",
"description": "A Node.js framework for REST API server-side-applications.",
"main": "lib/index.js",
"files": [
"LICENSE",
"README.md",
"utils",
"types",
"lib",
"interfaces",
"index.js",
"**.d.ts"
],
"scripts": {
"rimraf": "rimraf index.js && rimraf index.d.ts && rimraf lib && rimraf interfaces && rimraf types && rimraf utils",
"clean": "npm run rimraf && npm run tgz",
"tgz": "rimraf *.tgz",
"package": "node ./scripts/clean-package.js",
"start": "npm run clean && npm run tgz && tsc -w",
"prepack": "npm run clean && npm run package && tsc --outDir .",
"release": "semantic-release --branches main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mayajs/common.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/macign/maya/issues"
},
"homepage": "https://github.com/macign/maya#readme",
"devDependencies": {
"@mayajs/router": "^0.7.4",
"@types/node": "^14.14.40",
"reflect-metadata": "^0.1.13",
"semantic-release": "^19.0.2",
"ts-node": "^8.8.2",
"typescript": "^4.1.2"
}
}