-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.35 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
90
91
92
93
94
95
{
"name": "@reactgjs/gest",
"version": "0.6.3",
"main": "./dist/esm/user-land/index.mjs",
"types": "./dist/types/user-land/index.d.ts",
"exports": {
".": {
"types": "./dist/types/user-land/index.d.ts",
"default": "./dist/esm/user-land/index.mjs"
},
"./base-reporter": {
"types": "./dist/types/base/progress/base-reporter.d.ts",
"default": "./dist/esm/base/progress/base-reporter.mjs"
},
"./config": "./config.ts"
},
"bin": "./bin/gest.sh",
"files": [
"bin",
"dist",
"base-reporter.ts",
"CHANGELOG.md",
"config.ts",
"LICENSE",
"package.json",
"README.md"
],
"packageManager": "[email protected]",
"keywords": [
"test",
"testing",
"unit",
"gjs",
"gnome",
"javascript"
],
"repository": {
"url": "https://github.com/react-gjs/gest"
},
"description": "Testing framework for Gnome JavaScript (GJS).",
"license": "MIT",
"author": {
"name": "Szymon Bretner",
"email": "[email protected]"
},
"scripts": {
"fix:lint": "oxlint --fix .",
"fix:prettier": "prettier -w ./src/**/*.ts",
"test:lint": "oxlint .",
"test:prettier": "prettier -c ./src/**/*.ts",
"test:tsc": "tsc --noEmit",
"test:unit": "yarn g",
"build": "./scripts/build.mjs",
"auto-bump": "./scripts/auto-bump.mjs",
"publish:npm": "yarn build --clean && npm publish --access public",
"g": "./node_modules/.bin/gest",
"prepare": "husky install"
},
"_bundledDependencies": [
"dilswer",
"termx-markup",
"fs-gjs",
"path-gjsify",
"gjs-multiprocess",
"@ncpa0cpl/mutex.js"
],
"devDependencies": {
"@ncpa0cpl/nodepack": "~2.3.3",
"@reactgjs/gest": "~0.4.1",
"@types/node": "~18.17.5",
"axios": "~1.5.0",
"dilswer": "~2.1.1",
"fs-gjs": "~1.0.1",
"git-hook-tasks": "git+https://github.com/ncpa0cpl/git-hook-tasks#4215793",
"gjs-esm-types": "~0.0.4",
"husky": "~8.0.3",
"oxlint": "^0.11.0",
"pr-changelog-gen": "~1.1.3",
"prettier": "~3.0.0",
"prettier-plugin-jsdoc": "~1.0.1",
"rimraf": "~5.0.1",
"termx-markup": "~2.0.1",
"typescript": "~5.6.3"
},
"dependencies": {
"@ncpa0cpl/mutex.js": "^1.0.1",
"esbuild": "~0.24.0",
"gjs-multiprocess": "0.0.5",
"path-gjsify": "^1.0.0"
},
"resolutions": {
"dilswer": "2.1.1",
"@reactgjs/gest": "0.4.1"
}
}