-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.01 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
{
"name": "@orion76/plugin",
"version": "0.1.15",
"description": "Plugin clear architecture common library",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"update-version": "npm version patch",
"uv": "npm run update-version",
"build": "ng build orion76-plugin",
"build:github": "node ./node_modules/.bin/ng build orion76-plugin",
"build:watch": "ng build --watch",
"bw": "npm run build:watch",
"test": "ng test --karma-config karma-terminal.conf.js --watch=false",
"test:console": "ng test --karma-config karma-terminal.conf.js",
"test:browser": "ng test --karma-config karma.conf.js",
"tc": "npm run test:console",
"tb": "npm run test:browser",
"install:local": "./scripts/install_local.sh",
"il": "npm run install:local"
},
"author": "Paul Glazkow",
"license": "ISC",
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.5",
"@angular/cli": "^19.2.5",
"@angular/platform-browser-dynamic": "^19.2.4",
"@eslint/js": "^9.23.0",
"@types/jasmine": "~5.1.0",
"eslint": "^9.23.0",
"jasmine-core": "~5.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"karma-spec-reporter": "0.0.36",
"ng-packagr": "^19.2.0",
"typescript-eslint": "^8.29.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orion76/plugin.git"
},
"bugs": {
"url": "https://github.com/orion76/plugin/issues"
},
"homepage": "https://github.com/orion76/plugin#readme",
"keywords": [
"plugin",
"plugins",
"plugin-architecture",
"plugin-system",
"extensibility",
"modular",
"modularity",
"typescript",
"javascript",
"architecture",
"clean-architecture",
"ddd",
"dependency-injection",
"framework-agnostic",
"angular",
"orion76",
"plugin-manager",
"plugin-pattern",
"software-design",
"library"
]
}