-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.03 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
{
"name": "@theroyalwhee0/dynasty",
"version": "2.0.0-alpha.3",
"description": "Dynasty: asynchronous dependency injection",
"author": "Adam Mill <[email protected]> (https://www.theroyalwhee.com/)",
"license": "Apache-2.0",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/theroyalwhee0/dynasty.git"
},
"keywords": [
"di",
"dependency"
],
"homepage": "https://github.com/theroyalwhee0/dynasty#readme",
"bugs": {
"url": "https://github.com/theroyalwhee0/dynasty/issues"
},
"devDependencies": {
"@eslint/js": "9.8.0",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@microsoft/tsdoc": "0.15.0",
"@types/chai": "4.3.17",
"@types/eslint__js": "8.42.3",
"@types/lodash.once": "4.1.9",
"@types/mocha": "10.0.7",
"@types/node": "22.5.1",
"@typescript-eslint/eslint-plugin": "8.0.0",
"@typescript-eslint/parser": "8.0.0",
"c8": "10.1.2",
"chai": "5.1.1",
"concurrently": "8.2.2",
"eslint": "9.8.0",
"mocha": "10.7.3",
"tsx": "4.16.5",
"typedoc": "0.26.6",
"typescript": "5.5.4",
"typescript-eslint": "8.0.0"
},
"dependencies": {
"lodash.once": "4.1.1"
},
"scripts": {
"build": "tsc",
"build:full": "npm run -s clean && npm run -s build",
"develop": "concurrently -c blue,yellow --kill-others npm:develop:*",
"develop:build": "tsc --watch --preserveWatchOutput",
"develop:tests": "mocha --watch --reporter dot",
"lint": "tsc --noEmit && eslint src/**/*.ts examples/**/*.ts *.config.mjs",
"test": "c8 --reporter text-summary mocha",
"coverage": "c8 --reporter text mocha --reporter min",
"publish:coverage": "c8 --100 --reporter text mocha --reporter dot",
"docs": "typedoc --entryPoints ./src/index.ts --out docs",
"docs:browse": "open docs/index.html",
"clean": "rm -rf dist .build ; mkdir -p dist",
"dryrun": "npm prune && npm run -s build:full && npm run -s lint && npm run -s publish:coverage && npm publish --dry-run"
}
}