Skip to content

Commit f69824c

Browse files
committed
chore: add missing npm engine constraint to stats/base/dists/uniform/ctor
Adds `"npm": ">2.7.0"` to `engines` in `package.json` so `ctor` matches the engine convention used by the other 13 sibling packages in `@stdlib/stats/base/dists/uniform` (93% conformance). The `ctor` package legitimately omits native-addon infrastructure (no `src/`, `include/`, `binding.gyp`, `manifest.json`, `lib/native.js`) because it is a constructor class; the npm engine constraint is unrelated to native bindings.
1 parent 71660ea commit f69824c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • lib/node_modules/@stdlib/stats/base/dists/uniform/ctor

lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
"dependencies": {},
3535
"devDependencies": {},
3636
"engines": {
37-
"node": ">=0.10.0"
37+
"node": ">=0.10.0",
38+
"npm": ">2.7.0"
3839
},
3940
"os": [
4041
"aix",

0 commit comments

Comments
 (0)