-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 3.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "sealious",
"homepage": "http://sealious.github.io/",
"version": "0.17.29",
"description": "A declarative framework for fast & easy app development.",
"main": "./lib/src/main.js",
"types": "./@types/src/main.d.ts",
"scripts": {
"test-debug": "npm run test-cmd -- --debug",
"test-cmd": "node test.js",
"test": "npm run test-cmd -- ",
"build": "rm -rf ./lib && tsc",
"watch": "npm run build -- --watch",
"instrument": "npm run build && rm -fr .xunit coverage lib-instrumented && ./node_modules/.bin/nyc instrument --exclude \"\" lib lib-instrumented",
"test-reports": "npm run instrument && docker-compose up -d db mailcatcher && ./node_modules/.bin/nyc --exclude \"\" ./node_modules/.bin/mocha --recursive --timeout=10000 --require source-map-support/register --reporter xunit --reporter-option output=.xunit 'lib-instrumented/src/**/*.test.js' && nyc report --reporter clover --exclude \"\"",
"cover-html": "rm -rf coverate/lcov-report && npm run test-reports && nyc report --reporter lcov --exclude \"\" && xdg-open coverage/lcov-report/index.html",
"docs": "typedoc --out docs src --exclude '**/*+(test).ts' --mode file --toc Collection,Field,Policy,App --categorizeByGroup false --stripInternal"
},
"repository": {
"type": "git",
"url": "https://github.com/sealcode/sealious"
},
"author": "The Sealious team (http://github.com/Sealious)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Sealious/Sealious/issues"
},
"dependencies": {
"@koa/router": "^10.0.0",
"@sealcode/ts-predicates": "^0.4.3",
"@types/bluebird": "^3.5.30",
"@types/boom": "^7.3.0",
"@types/clone": "^0.1.30",
"@types/color": "^3.0.1",
"@types/color-hash": "^1.0.0",
"@types/escape-html": "^1.0.0",
"@types/koa": "^2.11.6",
"@types/koa__router": "*",
"@types/koa-mount": "^4.0.0",
"@types/koa-qs": "^2.0.0",
"@types/koa-send": "^4.1.2",
"@types/koa-static": "^4.0.1",
"@types/mime": "^2.0.2",
"@types/mjml": "^4.0.4",
"@types/mocha": "^7.0.2",
"@types/mongodb": "^3.5.20",
"@types/node": "^13.13.4",
"@types/nodemailer": "^6.4.0",
"@types/object-hash": "^1.3.3",
"@types/shortid": "0.0.29",
"@types/uuid": "^8.3.0",
"axios": "^0.18.1",
"bluebird": "^3.4.6",
"boom": "^7.3.0",
"chalk": "^4.1.0",
"clone": "^1.0.2",
"color": "latest",
"color-hash": "^1.0.3",
"cron": "^2.1.0",
"deepmerge": "^4.2.2",
"dot-prop": "^5.2.0",
"emittery": "0.8.1",
"escape-html": "^1.0.3",
"get-port": "^5.1.1",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-mount": "^4.0.0",
"koa-qs": "^3.0.0",
"koa-send": "^5.0.1",
"koa-static": "^5.0.0",
"locreq": "^2.0.2",
"mime": "^2.4.6",
"mjml": "^4.2.0",
"mongodb": "^3.6.2",
"nodemailer": "^6.4.6",
"object-hash": "^2.0.3",
"pretty-ms": "^7.0.0",
"qs": "^6.5.1",
"sanitize-html": "^1.13.0",
"shortid": "^2.2.6",
"typedoc": "^0.17.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cron": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jsdoc": "^29.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"mocha": "^8.2.1",
"mri": "^1.1.6",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"source-map-support": "^0.5.19",
"typescript": "^4.1.3"
}
}