generated from product-os/balena-typescript-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.61 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
{
"name": "mocha-pod",
"version": "2.0.7",
"description": "Mocha + Docker. Run integration tests in a docker container",
"homepage": "https://github.com/balena-io-modules/mocha-pod#readme",
"main": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": "./build/index.js",
"./attach": "./build/attach/index.js",
"./skip-setup": "./build/attach/hooks.js"
},
"keywords": [
"balena",
"typescript",
"mocha",
"testing",
"integration"
],
"author": "Balena Inc. <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-modules/mocha-pod.git"
},
"bugs": {
"url": "https://github.com/balena-io-modules/mocha-pod/issues"
},
"files": [
"build/",
"CHANGELOG.md",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf build",
"typedoc": "rimraf docs && typedoc",
"build": "npm run clean && tsc --project tsconfig.release.json",
"lint": "balena-lint --typescript lib tests",
"lint-fix": "balena-lint --typescript --fix lib tests",
"test:unit": "mocha -r ts-node/register -r tsconfig-paths/register --reporter spec lib/**/*.spec.ts",
"test:integration": "mocha -r ts-node/register -r tsconfig-paths/register -r lib/attach --bail --reporter spec tests/**/*.spec.ts",
"test:node": "npm run test:unit && npm run test:integration",
"test": "npm run build && npm run lint && npm run test:node",
"test:fast": "npm run build && npm run test:node",
"prepack": "npm run build"
},
"devDependencies": {
"@balena/lint": "^8.0.0",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/debug": "^4.1.7",
"@types/dockerode": "^3.3.9",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.0",
"@types/mock-fs": "^4.13.1",
"@types/tar-fs": "^2.0.1",
"@types/tar-stream": "^3.0.0",
"balena-config-karma": "^4.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dockerode": "^4.0.2",
"husky": "^8.0.0",
"lint-staged": "^15.0.0",
"mocha": "^10.0.0",
"mock-fs": "^5.1.4",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typedoc": "^0.26.0",
"typedoc-plugin-markdown": "^3.13.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@balena/compose": "^3.2.1",
"@balena/dockerignore": "^1.0.2",
"better-lock": "^3.0.0",
"debug": "^4.3.4",
"fast-glob": "^3.2.11",
"js-yaml": "^4.1.0",
"nanoid": "^4.0.1",
"tar-fs": "^2.1.1"
},
"versionist": {
"publishedAt": "2024-11-07T16:54:56.108Z"
}
}