-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "@basd/registry",
"version": "0.0.9",
"description": "A simple yet powerful utility to manage and create class instances in JS applications.",
"author": "Basedwon <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/frenware/utils/registry.git"
},
"bugs": {
"url": "https://gitlab.com/frenware/utils/registry/issues"
},
"homepage": "https://gitlab.com/frenware/utils/registry#readme",
"main": "lib/registry.js",
"browser": {
".": "./lib/registry.js"
},
"scripts": {
"dev:test": "nodemon -w ../.. -x npm test",
"dev": "nodemon -w ../.. test/registry.test.js",
"update": "npm run update:prod && npm run update:dev",
"update:prod": "npm i -S @basd/base@latest",
"update:dev": "npm i -D @basd/testr@latest",
"docs": "jsdoc2md lib/*.js > docs/api.md",
"test": "testr test"
},
"dependencies": {
"@basd/base": "^0.0.7"
},
"devDependencies": {
"@basd/testr": "^0.1.2",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0"
},
"keywords": [
"registry",
"class-management",
"javascript",
"OOP",
"object-oriented",
"instance-creation",
"class-validation",
"dependency-injection",
"design-patterns",
"SOLID",
"class-registry",
"class-storage",
"singleton",
"dynamic-class",
"runtime",
"base-class",
"ingest",
"override"
]
}