-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 2.21 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": "@rocket.chat/apps-compiler",
"version": "0.4.1",
"description": "The Rocket.Chat apps compiler",
"main": "index.js",
"engines": {
"node": ">= 12.2.0"
},
"scripts": {
"test": "mocha -r ts-node/register './tests/**/*.spec.ts'",
"test:watch": "mocha --require ts-node/register --watch --watch-files src, 'tests/**/*.ts'",
"build": "rm -rf dist && mkdir dist && cp package.json dist && tsc",
"build:prod": "npm run build -- --sourceMap false --declarationMap false && cp LICENSE dist && cp README.md dist",
"lint": "npx eslint src/**/*.ts",
"release": "npm run build:prod && cd dist && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/Rocket.Chat.Apps-compiler.git"
},
"keywords": [
"apps",
"compiler",
"rocket.chat"
],
"author": "Rocket.Chat",
"license": "MIT",
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat.Apps-compiler/issues"
},
"homepage": "https://github.com/RocketChat/Rocket.Chat.Apps-compiler#readme",
"devDependencies": {
"@rocket.chat/eslint-config": "^0.4.0",
"@types/chai": "^4.2.12",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"@types/lodash.clonedeep": "^4.5.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.26",
"@types/tv4": "^1.2.29",
"@types/yazl": "^2.4.1",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^7.9.0",
"husky": "^4.2.5",
"mocha": "^8.0.1",
"ts-node": "^9.1.1"
},
"dependencies": {
"@rocket.chat/apps-engine": "^1.28.0-alpha.5428",
"esbuild": "^0.12.16",
"figures": "^3.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"lodash.clonedeep": "^4.5.0",
"simple-node-logger": "^18.12.24",
"tv4": "^1.3.0",
"typescript": "^2.9.2",
"yazl": "^2.5.1"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm test"
}
}
}