This repository was archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.39 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.39 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
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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@sakuraapi/core",
"version": "0.21.3",
"description": "MongoDB and TypeScript MEAN Stack Framework for NodeJS",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/src/**/!(*.spec).js",
"lib/src/**/!(*.spec).d.ts",
"lib/index.*"
],
"scripts": {
"build": "./scripts/build.sh",
"coverage": "./scripts/coverage.sh",
"docs:generate": "./scripts/docs:generate.sh",
"docs:publish": "./scripts/docs:publish.sh",
"docs:serve": "./scripts/docs:serve.sh",
"install": "chmod +x scripts/*.* || true",
"lint": "./scripts/lint.sh",
"prepublish": "npm test",
"start": "nodemon --exec \"npm run build; echo build done\"",
"test": "./scripts/test.sh",
"test:db": "./scripts/test.sh saveDb",
"test:debug": "DEBUG=sapi:*,-sapi:*:verbose npm test",
"test:verbose": "DEBUG=sapi:* npm test",
"test:vverbose": "DEBUG=* npm test",
"test:watch": "nodemon --exec \"npm test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/sakuraapi/core.git"
},
"keywords": [
"REST",
"JSON",
"api",
"server"
],
"author": "Jean-Pierre E. Poveda",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/sakuraapi/core/issues"
},
"homepage": "https://github.com/sakuraapi/core#readme",
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@types/bcrypt": "^2.0.0",
"@types/debug": "0.0.30",
"@types/express": "^4.16.0",
"@types/jasmine": "^2.8.8",
"@types/lodash": "^4.14.116",
"@types/mongodb": "^3.1.4",
"@types/node": "^9.6.11",
"@types/supertest": "^2.0.5",
"@types/urlsafe-base64": "^1.0.28",
"@types/uuid": "^3.4.3",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"helmet": "^3.13.0",
"http-server": "^0.11.1",
"istanbul": "^0.4.5",
"jasmine": "^3.2.0",
"jasmine-spec-reporter": "^4.2.1",
"mongodb": "^3.1.3",
"nodemon": "^1.18.3",
"rxjs": "^6.3.3",
"source-map-support": "^0.5.8",
"supertest": "^3.1.0",
"tslint": "^5.11.0",
"typedoc": "^0.14.2",
"typescript": "^3.0.3"
},
"dependencies": {
"bcrypt": "^3.0.0",
"colors": "^1.3.1",
"debug": "^3.1.0",
"lodash": "^4.17.11",
"reflect-metadata": "^0.1.12",
"urlsafe-base64": "^1.0.0",
"uuid": "^3.3.2"
},
"peerDependencies": {
"express": "4.x",
"mongodb": "3.1.x",
"rxjs": "6.x"
}
}