-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.71 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.71 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
{
"name": "@puremvc/puremvc-typescript-util-async-command",
"version": "1.0.8",
"description": "PureMVC AsyncCommand Utility for TypeScript",
"main": "./bin/cjs/index.js",
"module": "bin/esm/index.js",
"exports": {
".": {
"import": {
"types": "./bin/types/index.d.ts",
"default": "./bin/esm/index.js"
},
"require": {
"types": "./bin/types/index.d.ts",
"default": "./bin/cjs/index.js"
}
}
},
"types": "./bin/types/index.d.ts",
"files": [
"bin/**/*.*",
"LICENSE",
"VERSION",
"README.md",
"package.json"
],
"scripts": {
"build": "npm run clean && npm run build:lib && npm run build:doc",
"test": "jest --coverage",
"lint": "eslint ./src ./test",
"lint:fix": "eslint ./src ./test --fix",
"typecheck": "tsc --noEmit -p tsconfig.json --composite false",
"format:check": "prettier --check ./src ./test",
"format:fix": "prettier --write ./src ./test",
"npm:publish:dry-run": "npm publish --dry-run",
"npm:publish": "npm publish --access public",
"build:lib": "npm run build:cjs && npm run build:esm",
"build:esm": "tsc --module esnext --outDir bin/esm && echo '{\"type\": \"module\"}' > bin/esm/package.json && rm -rf bin/esm/interfaces",
"build:cjs": "tsc --module commonjs --outDir bin/cjs && echo '{\"type\": \"commonjs\"}' > bin/cjs/package.json && rm -rf bin/cjs/interfaces",
"build:doc": "typedoc",
"clean": "rm -rf bin"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"text",
"lcov"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/PureMVC/puremvc-typescript-util-async-command.git"
},
"homepage": "https://puremvc.org",
"bugs": {
"url": "https://github.com/PureMVC/puremvc-typescript-util-async-command/issues"
},
"keywords": [
"puremvc",
"typescript",
"mvc",
"state machine"
],
"author": "Cliff Hall cliff@futurescale.com",
"license": "BSD-3-Clause",
"directories": {
"doc": "docs",
"test": "src/test",
"bin": "bin"
},
"dependencies": {
"@puremvc/puremvc-typescript-multicore-framework": "^2.1.2",
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nyc": "^17.1.0",
"prettier": "^3.5.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.8",
"typescript-eslint": "^8.25.0",
"zod": "^3.24.2"
},
"engines": {
"node": ">=20"
}
}