-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.4 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
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
{
"name": "@nativescript/unit-test-runner",
"version": "5.0.0-alpha.0",
"description": "Run Vitest unit and UI tests inside real NativeScript runtimes on Android and iOS.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./protocol": {
"types": "./dist/protocol.d.ts",
"default": "./dist/protocol.js"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"default": "./dist/runtime/index.js"
},
"./runtime/shim": {
"types": "./dist/runtime/shim.d.ts",
"default": "./dist/runtime/shim.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"default": "./dist/testing/index.js"
},
"./ui": {
"types": "./dist/ui/index.d.ts",
"default": "./dist/ui/index.js"
},
"./webpack": {
"require": "./nativescript.webpack.js",
"default": "./nativescript.webpack.js"
}
},
"files": [
"dist",
"nativescript.webpack.js",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && node -e \"require('fs').writeFileSync('dist/package.json', JSON.stringify({ type: 'module' }, null, 2) + '\\n')\"",
"test": "vitest run",
"prepack": "npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-unit-test-runner.git"
},
"author": "NativeScript <oss@nativescript.org>",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"keywords": [
"NativeScript",
"vitest",
"unit-testing",
"ui-testing",
"android",
"ios"
],
"dependencies": {
"@vitest/expect": "~4.1.10",
"babel-loader": "^9.2.1",
"babel-plugin-istanbul": "^7.0.1",
"birpc": "^2.9.0",
"flatted": "^3.4.4",
"ws": "^8.18.3"
},
"peerDependencies": {
"@nativescript/core": ">=8.0.0",
"@vitest/runner": "~4.1.0",
"vitest": "~4.1.0"
},
"peerDependenciesMeta": {
"@nativescript/core": {
"optional": true
}
},
"devDependencies": {
"@nativescript/core": "^9.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"@vitest/runner": "~4.1.10",
"conventional-changelog-cli": "^5.0.0",
"typescript": "~5.8.0",
"vitest": "~4.1.10"
}
}