-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"author": "Steven Olmsted <steven.olmsted@ibigroup.com>",
"bugs": "https://github.com/ibi-group/isotropic-initializable/issues",
"dependencies": {
"isotropic-error": "~0.14.1",
"isotropic-later": "~0.15.1",
"isotropic-make": "~0.14.1",
"isotropic-mixin-prototype-chain": "~0.12.1",
"isotropic-pubsub": "~0.17.0"
},
"description": "An observable initialization lifecycle",
"devDependencies": {
"isotropic-dev-dependencies": "~0.5.0"
},
"engines": {
"node": "^26.7.0",
"npm": "^11.19.0"
},
"files": [
"lib"
],
"homepage": "https://github.com/ibi-group/isotropic-initializable",
"keywords": [
"async",
"init",
"initialization",
"initialize",
"isotropic",
"lifecycle",
"observable",
"pubsub"
],
"license": "BSD-3-Clause",
"main": "lib/initializable.js",
"name": "isotropic-initializable",
"repository": {
"type": "git",
"url": "git+https://github.com/ibi-group/isotropic-initializable.git"
},
"scripts": {
"lint": "eslint eslint.config.js lib test",
"posttest": "c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json check-coverage",
"prepare": "node ./node_modules/isotropic-dev-dependencies/lib/install-git-hooks.js",
"prepublishOnly": "npm test",
"pretest": "npm run lint",
"test": "c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json node --test"
},
"type": "module",
"version": "0.14.0"
}