forked from RocketChat/Rocket.Chat.Apps-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.05 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@rocket.chat/apps-engine",
"version": "1.19.0-alpha",
"description": "The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.",
"main": "index",
"typings": "index",
"scripts": {
"start": "gulp",
"lint": "tslint --project tsconfig.json",
"fix-lint": "tslint --project tsconfig.json --fix",
"bundle": "gulp bundle",
"compile": "gulp compile",
"go-publish": "gulp publish",
"go-publish-beta": "gulp publish-beta",
"go-publish-alpha": "gulp publish-alpha",
"unit-tests": "ts-node ./tests/runner.ts",
"test-and-coverage": "nyc npm run unit-tests && nyc report",
"view-coverage": "npm run test-and-coverage && http-server coverage -p 9082 -c-1",
"submit-codecov": "codecov --file=coverage/coverage-final.json",
"gen-doc": "typedoc --mode file --excludePrivate --target ES6 --name 'Rocket.Chat Apps TypeScript Definition' --out docs/ src/definition/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/Rocket.Chat.Apps-engine.git"
},
"keywords": [
"rocket.chat",
"team chat",
"apps engine"
],
"files": [
"client/**",
"server/**",
"definition/**",
"lib/**"
],
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"contributors": [
{
"name": "Bradley Hilton",
"email": "[email protected]"
},
{
"name": "Rodrigo Nascimento",
"email": "[email protected]"
},
{
"name": "Douglas Gubert",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat.Apps-engine/issues"
},
"homepage": "https://github.com/RocketChat/Rocket.Chat.Apps-engine#readme",
"devDependencies": {
"@types/adm-zip": "^0.4.31",
"@types/lodash.clonedeep": "^4.5.3",
"@types/nedb": "^1.8.5",
"@types/node": "^12.7.12",
"@types/semver": "^5.5.0",
"@types/stack-trace": "0.0.29",
"@types/uuid": "^3.4.3",
"alsatian": "^2.2.1",
"browserify": "^16.5.0",
"codecov": "^3.0.1",
"del": "^3.0.0",
"eslint": "^4.19.1",
"gulp": "^4.0.0",
"gulp-bump": "^3.1.1",
"gulp-shell": "^0.6.5",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^4.0.2",
"http-server": "^0.11.1",
"merge2": "^1.2.1",
"nedb": "^1.8.0",
"nyc": "^14.1.1",
"pre-push": "^0.1.1",
"tap-bark": "^1.0.0",
"ts-node": "^6.2.0",
"tslint": "^5.11.0",
"typedoc": "^0.15.0",
"uglify-es": "^3.3.9"
},
"dependencies": {
"adm-zip": "^0.4.9",
"cryptiles": "^4.1.3",
"lodash.clonedeep": "^4.5.0",
"semver": "^5.5.0",
"stack-trace": "0.0.10",
"typescript": "^2.9.2",
"uuid": "^3.2.1"
},
"nyc": {
"include": [
"src/*.ts",
"src/server/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"json",
"html"
],
"all": true
},
"pre-push": [
"lint",
"compile",
"unit-tests",
"gen-doc"
]
}