generated from product-os/balena-typescript-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
{
"name": "open-office-bot",
"version": "0.0.1",
"description": "Tell you about meetings",
"homepage": "https://github.com/product-os/open-office-bot#readme",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"balena",
"typescript"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/product-os/open-office-bot.git"
},
"bugs": {
"url": "https://github.com/product-os/open-office-bot/issues"
},
"files": [
"build/"
],
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc",
"lint": "balena-lint --typescript src tests",
"lint-fix": "balena-lint --typescript --fix src tests",
"test:node": "mocha -r ts-node/register --reporter spec tests/**/*.spec.ts",
"test:browser": "karma start",
"test": "npm run build && npm run lint && npm run test:node && npm run test:browser",
"test:fast": "npm run build && npm run test:node",
"prepack": "npm run build",
"start": "npm run build && node build/index.js",
"dev": "env-cmd -f ./.env.dev ts-node-dev --respawn --transpile-only src/index.ts",
"prod": "PRODUCTION=1 node build/index.js"
},
"devDependencies": {
"@balena/lint": "^5.4.2",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.2",
"balena-config-karma": "^3.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"env-cmd": "^10.1.0",
"husky": "^4.2.5",
"karma": "^6.3.2",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"versionist": {
"publishedAt": "2022-07-20T21:31:17.871Z"
},
"dependencies": {
"puppeteer": "^19.4.1",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-stealth": "^2.11.1",
"totp-generator": "^0.0.14",
"zulip-js": "^2.0.9"
}
}