-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.18 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.18 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@srcpush/plugin-testing-framework",
"version": "0.1.0",
"description": "Testing framework for CodePush-compatible plugins, with helpers for Mocha, mock servers, and mobile emulator orchestration.",
"keywords": [
"code-push",
"react-native",
"testing",
"framework",
"mocha",
"android",
"ios"
],
"homepage": "https://github.com/srcpush/plugin-testing-framework#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/srcpush/plugin-testing-framework.git"
},
"bugs": {
"url": "https://github.com/srcpush/plugin-testing-framework/issues"
},
"license": "MIT",
"author": "srcpush",
"main": "./dist/script/index.js",
"types": "./dist/script/index.d.ts",
"exports": {
".": {
"types": "./dist/script/index.d.ts",
"require": "./dist/script/index.js",
"default": "./dist/script/index.js"
},
"./script/index": {
"types": "./dist/script/index.d.ts",
"require": "./dist/script/index.js",
"default": "./dist/script/index.js"
},
"./script/platform": {
"types": "./dist/script/platform.d.ts",
"require": "./dist/script/platform.js",
"default": "./dist/script/platform.js"
},
"./script/projectManager": {
"types": "./dist/script/projectManager.d.ts",
"require": "./dist/script/projectManager.js",
"default": "./dist/script/projectManager.js"
},
"./script/serverUtil": {
"types": "./dist/script/serverUtil.d.ts",
"require": "./dist/script/serverUtil.js",
"default": "./dist/script/serverUtil.js"
},
"./script/test": {
"types": "./dist/script/test.d.ts",
"require": "./dist/script/test.js",
"default": "./dist/script/test.js"
},
"./script/testBuilder": {
"types": "./dist/script/testBuilder.d.ts",
"require": "./dist/script/testBuilder.js",
"default": "./dist/script/testBuilder.js"
},
"./script/testConfig": {
"types": "./dist/script/testConfig.d.ts",
"require": "./dist/script/testConfig.js",
"default": "./dist/script/testConfig.js"
},
"./script/testUtil": {
"types": "./dist/script/testUtil.d.ts",
"require": "./dist/script/testUtil.js",
"default": "./dist/script/testUtil.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"test/template",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=18.18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json",
"pack:check": "npm pack --dry-run",
"verify": "npm run typecheck && npm run build && npm run pack:check",
"test": "npm run verify",
"prepublishOnly": "npm run verify"
},
"dependencies": {
"archiver": "^7.0.1",
"express": "^5.1.0"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/express": "^5.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"typescript": "^5.9.3"
}
}